]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Temporary "fix" for the fact that pbxbuild is replaced with xcodebuild
authorJack Jansen <jack.jansen@cwi.nl>
Tue, 4 Nov 2003 22:45:16 +0000 (22:45 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Tue, 4 Nov 2003 22:45:16 +0000 (22:45 +0000)
on Panther: make it a variable. Changing the variable has to be done
by hand, for now, that remains to be worked on.

Mac/OSX/Makefile

index 8f1aec2fa474bb53a7775fab83afdebf334e71a0..469cd8ee0c2b042fb2a7d3397bb054f701476a19 100644 (file)
@@ -10,6 +10,11 @@ LIBDEST=$(prefix)/lib/python$(VERSION)
 BUILDPYTHON=$(builddir)/python.exe
 DESTDIR=
 
+# For 10.2:
+#PBXBUILD=pbxbuild
+# For 10.3:
+PBXBUILD=xcodebuild
+
 # These are normally glimpsed from the previous set
 bindir=/usr/local/bin
 PYTHONAPPSPATH=/Applications/MacPython-$(VERSION)
@@ -58,7 +63,7 @@ installapps: install_PythonLauncher install_Python install_BuildApplet install_I
 
 install_PythonLauncher:
        cd $(srcdir)/Mac/OSX/PythonLauncher/PythonLauncher.pbproj ; \
-       pbxbuild -target PythonLauncher -buildstyle Deployment install \
+       $(PBXBUILD) -target PythonLauncher -buildstyle Deployment install \
                DSTROOT=$(DESTDIR)/ INSTALL_PATH=$(PYTHONAPPSPATH)
 
 install_Python: