From: Jack Jansen Date: Tue, 28 Jan 2003 21:45:44 +0000 (+0000) Subject: Install "python$(VERSION)" into /usr/local as the symlink to the framework, X-Git-Tag: v2.3c1~2217 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=50abec8fc4c72663310237f7cfda2e09ddca2757;p=thirdparty%2FPython%2Fcpython.git Install "python$(VERSION)" into /usr/local as the symlink to the framework, and also create a symlink "python" pointing to "python$(VERSION)". Fixes #675745. --- diff --git a/Mac/OSX/Makefile b/Mac/OSX/Makefile index 41f4acd3d3c7..e5ad5c458792 100644 --- a/Mac/OSX/Makefile +++ b/Mac/OSX/Makefile @@ -205,7 +205,9 @@ $(APPINSTALLDIR)/Contents/MacOS/python: install_Python installunixtools: $(INSTALLED_PYTHON) $(INSTALLED_PYTHONW) $(INSTALL) -d $(bindir) - $(INSTALL_SYMLINK) $(INSTALLED_PYTHON) $(bindir)/python + $(INSTALL_SYMLINK) $(INSTALLED_PYTHON) $(bindir)/python$(VERSION) + $(INSTALL_SYMLINK) python$(VERSION) $(bindir)/python echo "#!/bin/sh" > pythonw.sh echo "exec \"$(INSTALLED_PYTHONW)\" \"\$$@\"" >> pythonw.sh - $(INSTALL) pythonw.sh $(bindir)/pythonw + $(INSTALL) pythonw.sh $(bindir)/pythonw$(VERSION) + $(INSTALL_SYMLINK) pythonw$(VERSION) $(bindir)/pythonw