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

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


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

Modified Files:
      Tag: release23-maint
	Makefile.pre.in 
Log Message:
Patch #841807: Check whether a versioned libpython.so symlink is needed
in altbininstall.


Index: Makefile.pre.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/Makefile.pre.in,v
retrieving revision 1.136.6.2
retrieving revision 1.136.6.3
diff -C2 -d -r1.136.6.2 -r1.136.6.3
*** Makefile.pre.in	4 Nov 2003 21:15:22 -0000	1.136.6.2
--- Makefile.pre.in	18 Nov 2003 19:54:00 -0000	1.136.6.3
***************
*** 610,614 ****
  		else \
  			$(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \
! 			(cd $(DESTDIR)$(LIBDIR); $(LN) -sf $(INSTSONAME) libpython$(VERSION)$(SO)); \
  		fi; \
  	else	true; \
--- 610,616 ----
  		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