summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-01-03 15:54:36 (GMT)
committerGuido van Rossum <guido@python.org>1997-01-03 15:54:36 (GMT)
commit042a05172f0256110c485d619ec6cc4648128cb7 (patch)
tree30d0ac6a5b7c94f751482680d6b0f811cac11240 /Makefile.in
parentb9d338cbfbca06d60c7a5b31ee5e229fe6b801a2 (diff)
downloadcpython-042a05172f0256110c485d619ec6cc4648128cb7.zip
cpython-042a05172f0256110c485d619ec6cc4648128cb7.tar.gz
cpython-042a05172f0256110c485d619ec6cc4648128cb7.tar.bz2
Add $(srcdir) in front of the test program's name (else it won't work
when $(srcdir) isn't '.', i.e. when using VPATH).
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 2c92655..eab8e2e 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -158,7 +158,7 @@ python: Makefiles
# Test the interpreter (twice, once without .pyc files, once with)
TESTPATH= $(srcdir)/Lib:$(srcdir)/Lib/test:./Modules
TESTOPTS=
-TESTPROG= Lib/test/regrtest.py
+TESTPROG= $(srcdir)/Lib/test/regrtest.py
test: python
-rm -f $(srcdir)/Lib/test/*.pyc
PYTHONPATH=$(TESTPATH) ./python $(TESTPROG) $(TESTOPTS)