From cc7bb5848eed66773d4d4804921fb9cf02d1ea33 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Tue, 4 Nov 2003 22:45:16 +0000 Subject: 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. --- Mac/OSX/Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Mac/OSX/Makefile b/Mac/OSX/Makefile index 8f1aec2..469cd8e 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: -- cgit v0.12