diff options
author | Hye-Shik Chang <hyeshik@gmail.com> | 2004-03-18 07:51:27 (GMT) |
---|---|---|
committer | Hye-Shik Chang <hyeshik@gmail.com> | 2004-03-18 07:51:27 (GMT) |
commit | 0e5e6c70e6949bb82c54e1da2cff1836523902c4 (patch) | |
tree | 999f23d41e7b9a01b76e16c21baddae381d102c8 /Makefile.pre.in | |
parent | d1de45f549756cb42c48b3a3cd23c53a9b2a4e4a (diff) | |
download | cpython-0e5e6c70e6949bb82c54e1da2cff1836523902c4.zip cpython-0e5e6c70e6949bb82c54e1da2cff1836523902c4.tar.gz cpython-0e5e6c70e6949bb82c54e1da2cff1836523902c4.tar.bz2 |
Ignore error status codes occurred while compiling site-packages
directory.
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 512185f..9a50039 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -718,11 +718,11 @@ libinstall: $(BUILDPYTHON) $(srcdir)/Lib/$(PLATDIR) ./$(BUILDPYTHON) -Wi -tt -O $(DESTDIR)$(LIBDEST)/compileall.py \ -d $(LIBDEST) -f \ -x 'badsyntax|site-packages' $(DESTDIR)$(LIBDEST) - PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \ + -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \ ./$(BUILDPYTHON) -Wi -t $(DESTDIR)$(LIBDEST)/compileall.py \ -d $(LIBDEST)/site-packages -f \ -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages - PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \ + -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \ ./$(BUILDPYTHON) -Wi -t -O $(DESTDIR)$(LIBDEST)/compileall.py \ -d $(LIBDEST)/site-packages -f \ -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages |