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

thomas.wouters python-checkins at python.org
Sat Jan 26 02:47:05 CET 2008


Author: thomas.wouters
Date: Sat Jan 26 02:47:05 2008
New Revision: 60303

Modified:
   python/trunk/Makefile.pre.in
Log:

Make 'testall' work again when building in a separate directory.
test_distutils still fails when doing that.



Modified: python/trunk/Makefile.pre.in
==============================================================================
--- python/trunk/Makefile.pre.in	(original)
+++ python/trunk/Makefile.pre.in	Sat Jan 26 02:47:05 2008
@@ -617,7 +617,7 @@
 
 testall:	all platform
 		-find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
-		$(TESTPYTHON) Lib/compileall.py
+		$(TESTPYTHON) $(srcdir)/Lib/compileall.py
 		-find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
 		-$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
 		$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall


More information about the Python-checkins mailing list