diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2008-12-18 19:46:21 +0000 |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2008-12-18 19:46:21 +0000 |
commit | d66c6d31afecf534b2182c79fc3496c8fd85332e (patch) | |
tree | dcd8e21140fda700c152130288c50ea41282d4b8 | |
parent | 73c0e65fc353cbb80cabae8d1123716dcf379a20 (diff) | |
download | cpython-git-d66c6d31afecf534b2182c79fc3496c8fd85332e.tar.gz |
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 e5706cdf78..959dd1ba8e 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1068,7 +1068,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: |