diff options
author | Thomas Wouters <thomas@python.org> | 2008-01-26 01:47:05 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2008-01-26 01:47:05 (GMT) |
commit | 00417a3b5df9c83d88f7abf91d40fdab5517d7e0 (patch) | |
tree | 5a898db32ef533f15b5f00acd4714fe56afa978f /Makefile.pre.in | |
parent | a97744c9d99e2a7cf0edebcf6bba36ce74b56df0 (diff) | |
download | cpython-00417a3b5df9c83d88f7abf91d40fdab5517d7e0.zip cpython-00417a3b5df9c83d88f7abf91d40fdab5517d7e0.tar.gz cpython-00417a3b5df9c83d88f7abf91d40fdab5517d7e0.tar.bz2 |
Make 'testall' work again when building in a separate directory.
test_distutils still fails when doing that.
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 ede3bd8..c444539 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -617,7 +617,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 |