From: Ronald Oussoren Date: Tue, 25 Jul 2006 19:13:35 +0000 (+0000) Subject: Install the compatibility symlink to libpython.a on OSX using 'ln -sf' instead X-Git-Tag: v2.5b3~163 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=518b95c376cd1ab71297a5e0da619a743bd5dd31;p=thirdparty%2FPython%2Fcpython.git Install the compatibility symlink to libpython.a on OSX using 'ln -sf' instead of 'ln -s', this avoid problems when reinstalling python. --- diff --git a/Makefile.pre.in b/Makefile.pre.in index 8f05d0de499b..f61758c5428c 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -935,7 +935,7 @@ frameworkinstallstructure: $(LDLIBRARY) # 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