diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-12-07 21:52:07 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-12-07 21:52:07 (GMT) |
commit | 48e02e4c395c6119b6f6240593607103d4300ff3 (patch) | |
tree | 14b2758cde62afc8bb486837c2ba839fae9368aa | |
parent | 001734ca7fd4fb4f53040c83bf06579cc171aded (diff) | |
download | cpython-48e02e4c395c6119b6f6240593607103d4300ff3.zip cpython-48e02e4c395c6119b6f6240593607103d4300ff3.tar.gz cpython-48e02e4c395c6119b6f6240593607103d4300ff3.tar.bz2 |
forward port of 1.136.6.2:
$(prefix) wasn't communicated to Mac/OSX/Makefile for all targets. Fixed.
-rw-r--r-- | Makefile.pre.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 2285646..512185f 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -875,13 +875,13 @@ frameworkinstallmaclib: frameworkinstallapps: $(MAKE) -f $(srcdir)/Mac/OSX/Makefile installapps \ $(RUNSHARED) BUILDPYTHON=./$(BUILDPYTHON) DIRMODE=$(DIRMODE) FILEMODE=$(FILEMODE) \ - srcdir=$(srcdir) builddir=. DESTDIR=$(DESTDIR) + srcdir=$(srcdir) builddir=. DESTDIR=$(DESTDIR) prefix=$(prefix) # This install the unix python and pythonw tools in /usr/local/bin frameworkinstallunixtools: $(MAKE) -f $(srcdir)/Mac/OSX/Makefile installunixtools \ DIRMODE=$(DIRMODE) FILEMODE=$(FILEMODE) \ - srcdir=$(srcdir) builddir=. DESTDIR=$(DESTDIR) + srcdir=$(srcdir) builddir=. DESTDIR=$(DESTDIR) prefix=$(prefix) # This installs the Demos and Tools into the applications directory. # It is not part of a normal frameworkinstall |