From: Martin v. Löwis Date: Sat, 21 Jun 2003 13:26:28 +0000 (+0000) Subject: Set -d in compileall, to get proper path in case DESTDIR is not empty. X-Git-Tag: v2.3c1~347 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=975302dbbe540bca61b6c59f117ca486510b6d4a;p=python Set -d in compileall, to get proper path in case DESTDIR is not empty. Also add force, to recompile string.pyc in DESTDIR (which would normally compiled by running compileall.py). --- diff --git a/Makefile.pre.in b/Makefile.pre.in index 735ec3c4b7..27e8090f83 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -703,15 +703,19 @@ libinstall: $(BUILDPYTHON) $(srcdir)/Lib/$(PLATDIR) $(INSTALL_DATA) $(srcdir)/LICENSE $(DESTDIR)$(LIBDEST)/LICENSE.txt PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \ ./$(BUILDPYTHON) -Wi -tt $(DESTDIR)$(LIBDEST)/compileall.py \ + -d $(LIBDEST) -f \ -x 'badsyntax|site-packages' $(DESTDIR)$(LIBDEST) PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \ ./$(BUILDPYTHON) -Wi -tt -O $(DESTDIR)$(LIBDEST)/compileall.py \ + -d $(LIBDEST) -f \ -x 'badsyntax|site-packages' $(DESTDIR)$(LIBDEST) 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) \ ./$(BUILDPYTHON) -Wi -t -O $(DESTDIR)$(LIBDEST)/compileall.py \ + -d $(LIBDEST)/site-packages -f \ -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages # Create the PLATDIR source directory, if one wasn't distributed..