diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-03-18 21:23:05 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-03-18 21:23:05 (GMT) |
commit | 249683fab330004ee54087afc8c95732f0c7f983 (patch) | |
tree | 079c2d49aa90c8a1c7364c5e9aba9eedbc5f9eee /Makefile.pre.in | |
parent | 53b506beda2e959928661f960d6b7bff5e300adb (diff) | |
download | cpython-249683fab330004ee54087afc8c95732f0c7f983.zip cpython-249683fab330004ee54087afc8c95732f0c7f983.tar.gz cpython-249683fab330004ee54087afc8c95732f0c7f983.tar.bz2 |
Merged revisions 79051 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r79051 | benjamin.peterson | 2010-03-18 16:20:35 -0500 (Thu, 18 Mar 2010) | 1 line
don't try to compile anything in lib2to3/tests/data #8169
........
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 1af8f16..19a399a 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -912,12 +912,12 @@ libinstall: build_all $(srcdir)/Lib/$(PLATDIR) -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \ ./$(BUILDPYTHON) -Wi $(DESTDIR)$(LIBDEST)/compileall.py \ -d $(LIBDEST) -f \ - -x 'bad_coding|badsyntax|site-packages|py2_test_grammar|crlf|different_encoding' \ + -x 'badsyntax|site-packages|lib2to3/tests/data' \ $(DESTDIR)$(LIBDEST) -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \ ./$(BUILDPYTHON) -Wi -O $(DESTDIR)$(LIBDEST)/compileall.py \ -d $(LIBDEST) -f \ - -x 'bad_coding|badsyntax|site-packages|py2_test_grammar|crlf|different_encoding' \ + -x 'badsyntax|site-packages|lib2to3/tests/data' \ $(DESTDIR)$(LIBDEST) -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \ ./$(BUILDPYTHON) -Wi $(DESTDIR)$(LIBDEST)/compileall.py \ |