[Python-checkins] python/dist/src Makefile.pre.in, 1.136.6.3, 1.136.6.4

loewis at users.sourceforge.net loewis at users.sourceforge.net
Sun Sep 26 19:22:44 CEST 2004


Update of /cvsroot/python/python/dist/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7630

Modified Files:
      Tag: release23-maint
	Makefile.pre.in 
Log Message:
Replace -soname with -h for Solaris compatibility. Fixes #1034496.


Index: Makefile.pre.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/Makefile.pre.in,v
retrieving revision 1.136.6.3
retrieving revision 1.136.6.4
diff -u -d -r1.136.6.3 -r1.136.6.4
--- Makefile.pre.in	18 Nov 2003 19:54:00 -0000	1.136.6.3
+++ Makefile.pre.in	26 Sep 2004 17:22:10 -0000	1.136.6.4
@@ -345,7 +345,7 @@
 
 libpython$(VERSION).so: $(LIBRARY_OBJS)
 	if test $(INSTSONAME) != $(LDLIBRARY); then \
-		$(LDSHARED) -Wl,-soname=$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
+		$(LDSHARED) -Wl,-h=$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
 		$(LN) -f $(INSTSONAME) $@; \
 	else\
 		$(LDSHARED) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \



More information about the Python-checkins mailing list