From: Jack Jansen Date: Sat, 21 Jun 2003 22:07:16 +0000 (+0000) Subject: Give compileall a -d option so it works correctly in the face of X-Git-Tag: v2.3c1~340 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d2544e32f53467f4624f238e99573dcd74da97c7;p=python Give compileall a -d option so it works correctly in the face of DESTDIR being non-null. --- diff --git a/Mac/OSX/Makefile b/Mac/OSX/Makefile index 5dcb42d291..5720069998 100644 --- a/Mac/OSX/Makefile +++ b/Mac/OSX/Makefile @@ -223,8 +223,8 @@ installmacsubtree: $(BUILDPYTHON) $(CACHERSRC) -v $(DESTDIR)$(MACLIBDEST) $(DESTDIR)$(MACTOOLSDEST) - $(BUILDPYTHON) -Wi -tt $(compileall) -x badsyntax $(DESTDIR)$(MACTOOLSDEST) - $(BUILDPYTHON) -O -Wi -tt $(compileall) -x badsyntax $(DESTDIR)$(MACTOOLSDEST) + $(BUILDPYTHON) -Wi -tt $(compileall) -d $(MACTOOLSDEST) -x badsyntax $(DESTDIR)$(MACTOOLSDEST) + $(BUILDPYTHON) -O -Wi -tt $(compileall) -d $(MACTOOLSDEST) -x badsyntax $(DESTDIR)$(MACTOOLSDEST) # # We use the full name here in stead of $(INSTALLED_PYTHONW), because