[Python-3000-checkins] r60302 - python/branches/py3k/Makefile.pre.in

thomas.wouters python-3000-checkins at python.org
Sat Jan 26 00:21:17 CET 2008


Author: thomas.wouters
Date: Sat Jan 26 00:21:16 2008
New Revision: 60302

Modified:
   python/branches/py3k/Makefile.pre.in
Log:

Make the testall target work again when building in a separate directory
(with '../path/to/source/configure')



Modified: python/branches/py3k/Makefile.pre.in
==============================================================================
--- python/branches/py3k/Makefile.pre.in	(original)
+++ python/branches/py3k/Makefile.pre.in	Sat Jan 26 00:21:16 2008
@@ -646,7 +646,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-3000-checkins mailing list