[Python-checkins] r50831 - python/trunk/Makefile.pre.in

ronald.oussoren python-checkins at python.org
Tue Jul 25 21:13:35 CEST 2006


Author: ronald.oussoren
Date: Tue Jul 25 21:13:35 2006
New Revision: 50831

Modified:
   python/trunk/Makefile.pre.in
Log:
Install the compatibility symlink to libpython.a on OSX using 'ln -sf' instead
of 'ln -s', this avoid problems when reinstalling python.


Modified: python/trunk/Makefile.pre.in
==============================================================================
--- python/trunk/Makefile.pre.in	(original)
+++ python/trunk/Makefile.pre.in	Tue Jul 25 21:13:35 2006
@@ -935,7 +935,7 @@
 # Install a number of symlinks to keep software that expects a normal unix
 # install (which includes python-config) happy.
 frameworkinstallmaclib:
-	ln -s "../../../Python" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config/libpython$(VERSION).a"
+	ln -fs "../../../Python" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config/libpython$(VERSION).a"
 	cd Mac && $(MAKE) installmacsubtree DESTDIR="$(DESTDIR)"
 
 # This installs the IDE, the Launcher and other apps into /Applications


More information about the Python-checkins mailing list