diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-03-18 21:23:05 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-03-18 21:23:05 +0000 |
commit | 050cd69a407805f778d679e86bed57c697951b0d (patch) | |
tree | 5220ad180ecbeb582cd1c0f50f362ffff534d6e4 /Makefile.pre.in | |
parent | 2a3bc1b72109dbc5a1e7cc820bdd931539d6d9de (diff) | |
download | cpython-050cd69a407805f778d679e86bed57c697951b0d.tar.gz |
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 1af8f165dc..19a399ab2b 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 \ |