diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2008-12-18 19:49:35 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2008-12-18 19:49:35 (GMT) |
commit | 09027aac9d5101d0e15eac8ba3a5d60e5298f26c (patch) | |
tree | 3edcbcdbac4fa42ee5f0a10a7ee85061465c6bb3 | |
parent | 19288c247ad585f7a5487d2e5d3f9d50887a19ba (diff) | |
download | cpython-09027aac9d5101d0e15eac8ba3a5d60e5298f26c.zip cpython-09027aac9d5101d0e15eac8ba3a5d60e5298f26c.tar.gz cpython-09027aac9d5101d0e15eac8ba3a5d60e5298f26c.tar.bz2 |
Merged revisions 67844 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r67844 | mark.dickinson | 2008-12-18 19:46:21 +0000 (Thu, 18 Dec 2008) | 3 lines
Issue 4692: bogus 'Make' in Makefile.pre.in; replace with '$MAKE'.
Thanks Ned Deily.
........
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 9e01d84..d98df71 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1050,7 +1050,7 @@ frameworkaltinstallunixtools4way: # This installs the Demos and Tools into the applications directory. # It is not part of a normal frameworkinstall frameworkinstallextras: - cd Mac && Make installextras DESTDIR="$(DESTDIR)" + cd Mac && $(MAKE) installextras DESTDIR="$(DESTDIR)" # This installs a few of the useful scripts in Tools/scripts scriptsinstall: |