summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 2bf9eb9..0a26902 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -200,10 +200,11 @@ Modules: Parser Python Objects
# Test the interpreter (twice, once without .pyc files, once with)
TESTOPTS=
TESTPROG= $(srcdir)/Lib/test/regrtest.py
+TESTPYTHON= ./python
test: python
-rm -f $(srcdir)/Lib/test/*.pyc
- -PYTHONPATH= ./python $(TESTPROG) $(TESTOPTS)
- PYTHONPATH= ./python $(TESTPROG) $(TESTOPTS)
+ -PYTHONPATH= $(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
+ PYTHONPATH= $(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
# Install everything
install: altinstall bininstall maninstall