diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-02-25 12:41:10 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-02-25 12:41:10 (GMT) |
commit | 04087b56ec8a3b46913207e199428f0e8d553dfd (patch) | |
tree | be7c73c6e9533a69e80d2c79f72fd105b659300f /Makefile.pre.in | |
parent | dd8766a65bed9b86f9309f9b743b5d0f1074779e (diff) | |
download | cpython-04087b56ec8a3b46913207e199428f0e8d553dfd.zip cpython-04087b56ec8a3b46913207e199428f0e8d553dfd.tar.gz cpython-04087b56ec8a3b46913207e199428f0e8d553dfd.tar.bz2 |
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.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index dd62c33..ae54905 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -833,11 +833,13 @@ frameworkinstallstructure: $(LDLIBRARY) # This installs Mac/Lib into the framework frameworkinstallmaclib: $(MAKE) -f $(srcdir)/Mac/OSX/Makefile installmacsubtree \ + BUILDPYTHON=./$(BUILDPYTHON) \ srcdir=$(srcdir) builddir=. prefix=$(prefix) LIBDEST=$(LIBDEST) # This installs the IDE, the Launcher and other apps into /Applications frameworkinstallapps: $(MAKE) -f $(srcdir)/Mac/OSX/Makefile installapps \ + BUILDPYTHON=./$(BUILDPYTHON) \ srcdir=$(srcdir) builddir=. dstroot=$(PYTHONFRAMEWORKPREFIX)/../.. # This install the unix python and pythonw tools in /usr/local/bin |