diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-06-21 22:07:16 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-06-21 22:07:16 (GMT) |
commit | d2544e32f53467f4624f238e99573dcd74da97c7 (patch) | |
tree | 377dcf068c92aba8545ee509375aad91c018c1d6 /Mac | |
parent | c44dbc46fec84ad9cbd958badc1cd325b5d498f0 (diff) | |
download | cpython-d2544e32f53467f4624f238e99573dcd74da97c7.zip cpython-d2544e32f53467f4624f238e99573dcd74da97c7.tar.gz cpython-d2544e32f53467f4624f238e99573dcd74da97c7.tar.bz2 |
Give compileall a -d option so it works correctly in the face of
DESTDIR being non-null.
Diffstat (limited to 'Mac')
-rw-r--r-- | Mac/OSX/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/OSX/Makefile b/Mac/OSX/Makefile index 5dcb42d..5720069 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 |