[Python-checkins] r67844 - python/trunk/Makefile.pre.in

mark.dickinson python-checkins at python.org
Thu Dec 18 20:46:21 CET 2008


Author: mark.dickinson
Date: Thu Dec 18 20:46:21 2008
New Revision: 67844

Log:
Issue 4692: bogus 'Make' in Makefile.pre.in; replace with '$MAKE'.
Thanks Ned Deily.


Modified:
   python/trunk/Makefile.pre.in

Modified: python/trunk/Makefile.pre.in
==============================================================================
--- python/trunk/Makefile.pre.in	(original)
+++ python/trunk/Makefile.pre.in	Thu Dec 18 20:46:21 2008
@@ -1068,7 +1068,7 @@
 # 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:


More information about the Python-checkins mailing list