From: Fred Drake Date: Tue, 4 Jul 2000 04:15:53 +0000 (+0000) Subject: libinstall: For the first bytecode compilation pass, use -tt instead of X-Git-Tag: v2.0b1~1095 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4b0200e322b333f5eac3a6b98b9ef527a596c856;p=thirdparty%2FPython%2Fcpython.git libinstall: For the first bytecode compilation pass, use -tt instead of -t. This ensures that each installation from source is checked for compliance. This is needed to make sure .py files in the various Lib/plat-foo/ directories are tested even if the core developers do not have access to the corresponding platforms. --- diff --git a/Makefile.in b/Makefile.in index 5a333f5b19e1..77492d3ffc6b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -328,7 +328,7 @@ libinstall: python $(srcdir)/Lib/$(PLATDIR) done; \ done PYTHONPATH=$(LIBDEST) \ - ./python$(EXE) -t $(LIBDEST)/compileall.py $(LIBDEST) + ./python$(EXE) -tt $(LIBDEST)/compileall.py $(LIBDEST) PYTHONPATH=$(LIBDEST) \ ./python$(EXE) -O $(LIBDEST)/compileall.py $(LIBDEST)