[Python-checkins] python/dist/src/Mac/OSX Makefile, 1.50.4.2, 1.50.4.3

jackjansen at users.sourceforge.net jackjansen at users.sourceforge.net
Wed Jun 2 16:07:44 EDT 2004


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

Modified Files:
      Tag: release23-maint
	Makefile 
Log Message:
Backport of 1.54:
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.50.4.2
retrieving revision 1.50.4.3
diff -C2 -d -r1.50.4.2 -r1.50.4.3
*** Makefile	4 Nov 2003 22:45:16 -0000	1.50.4.2
--- Makefile	2 Jun 2004 20:07:42 -0000	1.50.4.3
***************
*** 11,18 ****
  DESTDIR=
  
! # For 10.2:
! #PBXBUILD=pbxbuild
! # For 10.3:
  PBXBUILD=xcodebuild
  
  # These are normally glimpsed from the previous set
--- 11,20 ----
  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