diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-11-19 13:56:40 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-11-19 13:56:40 (GMT) |
commit | 6045b9c93511c767f6cfa2d2fa299c76181acd9b (patch) | |
tree | 52672c2e4ef0d5354f5b77af8d47b266f612829f /Mac | |
parent | 652b28c6f566ce7a7d16ffb5371bb61f80f8b3b2 (diff) | |
download | cpython-6045b9c93511c767f6cfa2d2fa299c76181acd9b.zip cpython-6045b9c93511c767f6cfa2d2fa299c76181acd9b.tar.gz cpython-6045b9c93511c767f6cfa2d2fa299c76181acd9b.tar.bz2 |
Temporary fix for buildon on both Panther and Jaguar.
Diffstat (limited to 'Mac')
-rw-r--r-- | Mac/OSX/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Mac/OSX/Makefile b/Mac/OSX/Makefile index 88fbcaf..d65dcf9 100644 --- a/Mac/OSX/Makefile +++ b/Mac/OSX/Makefile @@ -9,6 +9,10 @@ prefix=/Library/Frameworks/Python.framework/Versions/$(VERSION) 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 @@ -58,7 +62,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: |