diff options
author | Guido van Rossum <guido@python.org> | 1997-05-13 17:58:16 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-05-13 17:58:16 +0000 |
commit | 9acb7f2f25dc38b55694adf3478be13e74940b88 (patch) | |
tree | 6928759dd0b5c8adcf7bb127522191376db53daf /Makefile.in | |
parent | db850e97617dea7d0cbb760b09c782d582a19c81 (diff) | |
download | cpython-9acb7f2f25dc38b55694adf3478be13e74940b88.tar.gz |
TESTPATH is no longer needed
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index e76172ab95..3d75f15c6e 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 |