From: Jack Jansen Date: Tue, 4 Nov 2003 22:45:16 +0000 (+0000) Subject: Temporary "fix" for the fact that pbxbuild is replaced with xcodebuild X-Git-Tag: v2.3.3c1~74 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cc7bb5848eed66773d4d4804921fb9cf02d1ea33;p=thirdparty%2FPython%2Fcpython.git Temporary "fix" for the fact that pbxbuild is replaced with xcodebuild on Panther: make it a variable. Changing the variable has to be done by hand, for now, that remains to be worked on. --- diff --git a/Mac/OSX/Makefile b/Mac/OSX/Makefile index 8f1aec2fa474..469cd8ee0c2b 100644 --- a/Mac/OSX/Makefile +++ b/Mac/OSX/Makefile @@ -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: