diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2009-05-19 11:27:25 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2009-05-19 11:27:25 (GMT) |
commit | f84d7e9ed21294f6001345ddc6b2a8c4894ab70c (patch) | |
tree | 1670bc64d0fa29904378783b31b9995c3523fdd8 /Mac/Makefile.in | |
parent | 9a4414d76d20419921f52624f43448ee2ba8684b (diff) | |
download | cpython-f84d7e9ed21294f6001345ddc6b2a8c4894ab70c.zip cpython-f84d7e9ed21294f6001345ddc6b2a8c4894ab70c.tar.gz cpython-f84d7e9ed21294f6001345ddc6b2a8c4894ab70c.tar.bz2 |
MACOSX
* Remove junk documentation resources from the Python.app inside the framework
(This is a left-over from the ancient Python IDE, which was removed before 2.5)
* Ensure that the documentation is installed in a location where IDLE will see it
Diffstat (limited to 'Mac/Makefile.in')
-rw-r--r-- | Mac/Makefile.in | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/Mac/Makefile.in b/Mac/Makefile.in index f35009d..4d55e4b 100644 --- a/Mac/Makefile.in +++ b/Mac/Makefile.in @@ -38,12 +38,7 @@ STRIPFLAG=-s CPMAC=/Developer/Tools/CpMac APPTEMPLATE=$(srcdir)/Resources/app -APPSUBDIRS=MacOS Resources Resources/English.lproj \ - Resources/English.lproj/Documentation \ - Resources/English.lproj/Documentation/doc \ - Resources/English.lproj/Documentation/ide -DOCDIR=$(srcdir)/Resources/app/Resources/English.lproj/Documentation -DOCINDEX=$(DOCDIR)/"Documentation idx" +APPSUBDIRS=MacOS Resources compileall=$(srcdir)/../Lib/compileall.py installapps: install_Python install_PythonLauncher install_IDLE \ @@ -157,9 +152,6 @@ install_PythonLauncher: cd PythonLauncher && make install DESTDIR=$(DESTDIR) install_Python: - @if test ! -f $(DOCINDEX); then \ - echo WARNING: you should run Apple Help Indexing Tool on $(DOCDIR); \ - fi @for i in "$(PYTHONAPPSDIR)" "$(APPINSTALLDIR)" "$(APPINSTALLDIR)/Contents"; do \ if test ! -d "$(DESTDIR)$$i"; then \ echo "Creating directory $(DESTDIR)$$i"; \ |