[Python-checkins] python/dist/src Makefile.pre.in,1.113,1.114

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Tue, 25 Feb 2003 04:41:12 -0800


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

Modified Files:
	Makefile.pre.in 
Log Message:
In Mac OS X framework builds don't assume that the executable will be
called python.exe but actually pass it from the main Makefile to
Mac/OSX/Makefile. This makes framework builds work again on case
sensitive filesystems. Fixes bug #677753.



Index: Makefile.pre.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/Makefile.pre.in,v
retrieving revision 1.113
retrieving revision 1.114
diff -C2 -d -r1.113 -r1.114
*** Makefile.pre.in	21 Jan 2003 15:05:02 -0000	1.113
--- Makefile.pre.in	25 Feb 2003 12:41:08 -0000	1.114
***************
*** 834,837 ****
--- 834,838 ----
  frameworkinstallmaclib:
  	$(MAKE) -f $(srcdir)/Mac/OSX/Makefile installmacsubtree \
+ 		BUILDPYTHON=./$(BUILDPYTHON) \
  		srcdir=$(srcdir) builddir=. prefix=$(prefix) LIBDEST=$(LIBDEST)
  
***************
*** 839,842 ****
--- 840,844 ----
  frameworkinstallapps:
  	$(MAKE) -f $(srcdir)/Mac/OSX/Makefile installapps \
+ 		BUILDPYTHON=./$(BUILDPYTHON) \
  		srcdir=$(srcdir) builddir=. dstroot=$(PYTHONFRAMEWORKPREFIX)/../..