diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2008-07-22 07:06:33 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2008-07-22 07:06:33 (GMT) |
commit | 5aa0b4d766910188e546bbd0eb62bf0e68f77576 (patch) | |
tree | 5b0c678dd7e39a657b8406672793c42e119da61d /Mac/Makefile.in | |
parent | 5a849d4911331b40e7effe842c7ea6fa69b32c3b (diff) | |
download | cpython-5aa0b4d766910188e546bbd0eb62bf0e68f77576.zip cpython-5aa0b4d766910188e546bbd0eb62bf0e68f77576.tar.gz cpython-5aa0b4d766910188e546bbd0eb62bf0e68f77576.tar.bz2 |
Fix build issue on OSX 10.4, somehow this wasn't committed before.
Diffstat (limited to 'Mac/Makefile.in')
-rw-r--r-- | Mac/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Makefile.in b/Mac/Makefile.in index 6a917b7..2a485c6 100644 --- a/Mac/Makefile.in +++ b/Mac/Makefile.in @@ -217,7 +217,7 @@ install_IDLE: cd IDLE && make install install_BuildApplet: - $(RUNSHARED) arch -ppc -i386 $(BUILDPYTHON) $(srcdir)/scripts/BuildApplet.py \ + $(RUNSHARED) @ARCH_RUN_32BIT@ $(BUILDPYTHON) $(srcdir)/scripts/BuildApplet.py \ --destroot "$(DESTDIR)" \ --python=$(prefix)/Resources/Python.app/Contents/MacOS/$(PYTHONFRAMEWORK)`test -f "$(DESTDIR)$(prefix)/Resources/Python.app/Contents/MacOS/$(PYTHONFRAMEWORK)-32" && echo "-32"` \ --output "$(DESTDIR)$(PYTHONAPPSDIR)/Build Applet.app" \ @@ -279,7 +279,7 @@ installmacsubtree: done - $(RUNSHARED) arch -ppc -i386 $(BUILDPYTHON) $(CACHERSRC) -v $(DESTDIR)$(MACLIBDEST) $(DESTDIR)$(MACTOOLSDEST) + $(RUNSHARED) @ARCH_RUN_32BIT@ $(BUILDPYTHON) $(CACHERSRC) -v $(DESTDIR)$(MACLIBDEST) $(DESTDIR)$(MACTOOLSDEST) $(RUNSHARED) $(BUILDPYTHON) -Wi -tt $(compileall) -d $(MACTOOLSDEST) -x badsyntax $(DESTDIR)$(MACTOOLSDEST) $(RUNSHARED) $(BUILDPYTHON) -O -Wi -tt $(compileall) -d $(MACTOOLSDEST) -x badsyntax $(DESTDIR)$(MACTOOLSDEST) |