diff options
author | Thomas Wouters <thomas@python.org> | 2008-01-25 23:21:16 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2008-01-25 23:21:16 (GMT) |
commit | d2d291541dbf9cfbd6128123bb731b60eb9d6635 (patch) | |
tree | bfd76437d2f0b90e765651b43ba4319bb19c58ad /Makefile.pre.in | |
parent | eee84e96c5ca2fd9fd741c70b13280beedad80a8 (diff) | |
download | cpython-d2d291541dbf9cfbd6128123bb731b60eb9d6635.zip cpython-d2d291541dbf9cfbd6128123bb731b60eb9d6635.tar.gz cpython-d2d291541dbf9cfbd6128123bb731b60eb9d6635.tar.bz2 |
Make the testall target work again when building in a separate directory
(with '../path/to/source/configure')
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 8cbde80..0a03d87 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -646,7 +646,7 @@ test: all platform 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 |