]> granicus.if.org Git - python/commitdiff
Enable -t when compiling Python library modules in libinstall (.pyc
authorFred Drake <fdrake@acm.org>
Thu, 10 Feb 2000 17:23:44 +0000 (17:23 +0000)
committerFred Drake <fdrake@acm.org>
Thu, 10 Feb 2000 17:23:44 +0000 (17:23 +0000)
version only).

Enable -tt for the regression test.

Very similar to Skip's patch.

Makefile.in

index 08054334676d07f6edd2a56dcbbb9f08b761ca87..c466162310d01f0e67fdd97aa587d69e2e8938cb 100644 (file)
@@ -234,7 +234,7 @@ Modules:    Parser Python Objects
 # Test the interpreter (twice, once without .pyc files, once with)
 TESTOPTS=      
 TESTPROG=      $(srcdir)/Lib/test/regrtest.py
-TESTPYTHON=    ./python$(EXE)
+TESTPYTHON=    ./python$(EXE) -tt
 test:          all
                -rm -f $(srcdir)/Lib/test/*.py[co]
                -PYTHONPATH= $(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
@@ -346,7 +346,7 @@ libinstall: python $(srcdir)/Lib/$(PLATDIR)
                        done; \
                done
                PYTHONPATH=$(LIBDEST) \
-                       ./python$(EXE) $(LIBDEST)/compileall.py $(LIBDEST)
+                       ./python$(EXE) -t $(LIBDEST)/compileall.py $(LIBDEST)
                PYTHONPATH=$(LIBDEST) \
                        ./python$(EXE) -O $(LIBDEST)/compileall.py $(LIBDEST)