[Python-checkins] python/dist/src/Mac/OSX Makefile,1.53,1.54

jackjansen at users.sourceforge.net jackjansen at users.sourceforge.net
Wed Jun 2 16:06:49 EDT 2004


Update of /cvsroot/python/python/dist/src/Mac/OSX
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9519/Mac/OSX

Modified Files:
	Makefile 
Log Message:
Do an actual test for xcodebuild, in stead of relying on the user to
uncomment the relevant section. 


Index: Makefile
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/OSX/Makefile,v
retrieving revision 1.53
retrieving revision 1.54
diff -C2 -d -r1.53 -r1.54
*** Makefile	27 Nov 2003 22:54:28 -0000	1.53
--- Makefile	2 Jun 2004 20:06:38 -0000	1.54
***************
*** 10,17 ****
  BUILDPYTHON=$(builddir)/python.exe
  DESTDIR=
! # For 10.2:
! #PBXBUILD=pbxbuild
! # For 10.3:
  PBXBUILD=xcodebuild
  
  # These are normally glimpsed from the previous set
--- 10,19 ----
  BUILDPYTHON=$(builddir)/python.exe
  DESTDIR=
! # Test whether to use xcodebuild (preferred) or pbxbuild:
! ifeq ($(shell ls /usr/bin/xcodebuild),/usr/bin/xcodebuild)
  PBXBUILD=xcodebuild
+ else
+ PBXBUILD=pbxbuild
+ endif
  
  # These are normally glimpsed from the previous set




More information about the Python-checkins mailing list