[Python-checkins] r67847 - in python/branches/release30-maint: Makefile.pre.in

mark.dickinson python-checkins at python.org
Thu Dec 18 20:51:03 CET 2008


Author: mark.dickinson
Date: Thu Dec 18 20:51:03 2008
New Revision: 67847

Log:
Merged revisions 67846 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
  r67846 | mark.dickinson | 2008-12-18 19:49:35 +0000 (Thu, 18 Dec 2008) | 10 lines
  
  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.
  ........
................


Modified:
   python/branches/release30-maint/   (props changed)
   python/branches/release30-maint/Makefile.pre.in

Modified: python/branches/release30-maint/Makefile.pre.in
==============================================================================
--- python/branches/release30-maint/Makefile.pre.in	(original)
+++ python/branches/release30-maint/Makefile.pre.in	Thu Dec 18 20:51:03 2008
@@ -1050,7 +1050,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