[Python-checkins] python/dist/src Makefile.pre.in,1.139,1.140

loewis at users.sourceforge.net loewis at users.sourceforge.net
Tue Nov 18 14:54:22 EST 2003


Update of /cvsroot/python/python/dist/src
In directory sc8-pr-cvs1:/tmp/cvs-serv18270

Modified Files:
	Makefile.pre.in 
Log Message:
Patch #841807: Check whether a versioned libpython.so symlink is needed
in altbininstall. Backported to 2.3.


Index: Makefile.pre.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/Makefile.pre.in,v
retrieving revision 1.139
retrieving revision 1.140
diff -C2 -d -r1.139 -r1.140
*** Makefile.pre.in	16 Nov 2003 16:17:47 -0000	1.139
--- Makefile.pre.in	18 Nov 2003 19:54:20 -0000	1.140
***************
*** 616,620 ****
  		else \
  			$(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \
! 			(cd $(DESTDIR)$(LIBDIR); $(LN) -sf $(INSTSONAME) libpython$(VERSION)$(SO)); \
  		fi; \
  	else	true; \
--- 616,622 ----
  		else \
  			$(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \
! 			if test libpython$(VERSION)$(SO) != $(INSTSONAME); then \
! 				(cd $(DESTDIR)$(LIBDIR); $(LN) -sf $(INSTSONAME) libpython$(VERSION)$(SO)); \
! 			fi \
  		fi; \
  	else	true; \





More information about the Python-checkins mailing list