Commit 29eb8c31 authored by Jack Jansen's avatar Jack Jansen

Do an actual test for xcodebuild, in stead of relying on the user to

uncomment the relevant section.
parent 9f5f056d
...@@ -9,10 +9,12 @@ prefix=/Library/Frameworks/Python.framework/Versions/$(VERSION) ...@@ -9,10 +9,12 @@ prefix=/Library/Frameworks/Python.framework/Versions/$(VERSION)
LIBDEST=$(prefix)/lib/python$(VERSION) LIBDEST=$(prefix)/lib/python$(VERSION)
BUILDPYTHON=$(builddir)/python.exe BUILDPYTHON=$(builddir)/python.exe
DESTDIR= DESTDIR=
# For 10.2: # Test whether to use xcodebuild (preferred) or pbxbuild:
#PBXBUILD=pbxbuild ifeq ($(shell ls /usr/bin/xcodebuild),/usr/bin/xcodebuild)
# For 10.3:
PBXBUILD=xcodebuild PBXBUILD=xcodebuild
else
PBXBUILD=pbxbuild
endif
# These are normally glimpsed from the previous set # These are normally glimpsed from the previous set
bindir=/usr/local/bin bindir=/usr/local/bin
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment