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

jackjansen at users.sourceforge.net jackjansen at users.sourceforge.net
Tue Nov 4 17:45:19 EST 2003


Update of /cvsroot/python/python/dist/src/Mac/OSX
In directory sc8-pr-cvs1:/tmp/cvs-serv8344/OSX

Modified Files:
      Tag: release23-maint
	Makefile 
Log Message:
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.


Index: Makefile
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/OSX/Makefile,v
retrieving revision 1.50.4.1
retrieving revision 1.50.4.2
diff -C2 -d -r1.50.4.1 -r1.50.4.2
*** Makefile	4 Nov 2003 21:04:21 -0000	1.50.4.1
--- Makefile	4 Nov 2003 22:45:16 -0000	1.50.4.2
***************
*** 11,14 ****
--- 11,19 ----
  DESTDIR=
  
+ # For 10.2:
+ #PBXBUILD=pbxbuild
+ # For 10.3:
+ PBXBUILD=xcodebuild
+ 
  # These are normally glimpsed from the previous set
  bindir=/usr/local/bin
***************
*** 59,63 ****
  install_PythonLauncher:
  	cd $(srcdir)/Mac/OSX/PythonLauncher/PythonLauncher.pbproj ; \
! 	pbxbuild -target PythonLauncher -buildstyle Deployment install \
  		DSTROOT=$(DESTDIR)/ INSTALL_PATH=$(PYTHONAPPSPATH)
  
--- 64,68 ----
  install_PythonLauncher:
  	cd $(srcdir)/Mac/OSX/PythonLauncher/PythonLauncher.pbproj ; \
! 	$(PBXBUILD) -target PythonLauncher -buildstyle Deployment install \
  		DSTROOT=$(DESTDIR)/ INSTALL_PATH=$(PYTHONAPPSPATH)
  





More information about the Python-checkins mailing list