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

brett.cannon python-checkins at python.org
Tue Jan 29 05:13:08 CET 2008


Author: brett.cannon
Date: Tue Jan 29 05:13:07 2008
New Revision: 60405

Modified:
   python/trunk/Makefile.pre.in
Log:
Fix the reindent rule to use $(BUILDPYTHON).


Modified: python/trunk/Makefile.pre.in
==============================================================================
--- python/trunk/Makefile.pre.in	(original)
+++ python/trunk/Makefile.pre.in	Tue Jan 29 05:13:07 2008
@@ -1025,7 +1025,7 @@
 
 # Run reindent on the library
 reindent:
-	./python$(EXEEXT) $(srcdir)/Tools/scripts/reindent.py -r $(srcdir)/Lib
+	./$(BUILDPYTHON) $(srcdir)/Tools/scripts/reindent.py -r $(srcdir)/Lib
 
 # Rerun configure with the same options as it was run last time,
 # provided the config.status script exists


More information about the Python-checkins mailing list