summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-05-13 17:58:16 (GMT)
committerGuido van Rossum <guido@python.org>1997-05-13 17:58:16 (GMT)
commit054b3a2cd3a729ab7b563a8430447c443f9d248d (patch)
treeafb6f14583216a2d3cd4cccefd809fbeb7870ee2 /Makefile.in
parent2ef21efad369fe78c9c1dca7a416275374fb6cdf (diff)
downloadcpython-054b3a2cd3a729ab7b563a8430447c443f9d248d.zip
cpython-054b3a2cd3a729ab7b563a8430447c443f9d248d.tar.gz
cpython-054b3a2cd3a729ab7b563a8430447c443f9d248d.tar.bz2
TESTPATH is no longer needed
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index e76172a..3d75f15 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -166,13 +166,12 @@ Modules: Parser Python Objects
prefix="$(prefix)" exec_prefix="$(exec_prefix)" all
# Test the interpreter (twice, once without .pyc files, once with)
-TESTPATH= $(srcdir)/Lib:$(srcdir)/Lib/$(MACHDEP):$(srcdir)/Lib/test:./Modules
TESTOPTS=
TESTPROG= $(srcdir)/Lib/test/regrtest.py
test: python
-rm -f $(srcdir)/Lib/test/*.pyc
- PYTHONPATH=$(TESTPATH) ./python $(TESTPROG) $(TESTOPTS)
- PYTHONPATH=$(TESTPATH) ./python $(TESTPROG) $(TESTOPTS)
+ ./python $(TESTPROG) $(TESTOPTS)
+ ./python $(TESTPROG) $(TESTOPTS)
# Install everything
install: altinstall bininstall maninstall