summaryrefslogtreecommitdiffstats
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-07-15 13:12:42 (GMT)
committerGuido van Rossum <guido@python.org>2007-07-15 13:12:42 (GMT)
commit827bfd07420ae3f503ade1d60324a82a2e24023f (patch)
treeef112b58eef7a9c7149d0e0a37cfbe77cf61c472 /Makefile.pre.in
parentb7d3e65b3b59eb4970720241f4168b1a9deda974 (diff)
downloadcpython-827bfd07420ae3f503ade1d60324a82a2e24023f.zip
cpython-827bfd07420ae3f503ade1d60324a82a2e24023f.tar.gz
cpython-827bfd07420ae3f503ade1d60324a82a2e24023f.tar.bz2
Don't stop installing if compileall fails -- ever.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r--Makefile.pre.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index 488632f..53fa3ce 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -778,11 +778,11 @@ libinstall: $(BUILDPYTHON) $(srcdir)/Lib/$(PLATDIR)
done; \
done
$(INSTALL_DATA) $(srcdir)/LICENSE $(DESTDIR)$(LIBDEST)/LICENSE.txt
- PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
+ -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
./$(BUILDPYTHON) -Wi -tt $(DESTDIR)$(LIBDEST)/compileall.py \
-d $(LIBDEST) -f \
-x 'bad_coding|badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
- PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
+ -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
./$(BUILDPYTHON) -Wi -tt -O $(DESTDIR)$(LIBDEST)/compileall.py \
-d $(LIBDEST) -f \
-x 'bad_coding|badsyntax|site-packages' $(DESTDIR)$(LIBDEST)