diff options
author | Ned Deily <nad@acm.org> | 2011-02-07 16:44:19 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2011-02-07 16:44:19 (GMT) |
commit | eb698daf2f9afbde49e59d0527af7d4ee3756f45 (patch) | |
tree | 6e75af28ee48e9c836528eb740c85f2613e76305 /Mac/Makefile.in | |
parent | fdded56a469880a8230c44232cd7ce36edc99f3a (diff) | |
download | cpython-eb698daf2f9afbde49e59d0527af7d4ee3756f45.zip cpython-eb698daf2f9afbde49e59d0527af7d4ee3756f45.tar.gz cpython-eb698daf2f9afbde49e59d0527af7d4ee3756f45.tar.bz2 |
Issue #11079: The /Applications/Python x.x folder created by the Mac
OS X installers no longer includes an Extras directory. The Tools
directory is now installed in the framework under share/doc.
Diffstat (limited to 'Mac/Makefile.in')
-rw-r--r-- | Mac/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Mac/Makefile.in b/Mac/Makefile.in index bc0c90d..5e57b57 100644 --- a/Mac/Makefile.in +++ b/Mac/Makefile.in @@ -177,11 +177,11 @@ install_IDLE: $(INSTALLED_PYTHONAPP): install_Python -installextras: $(srcdir)/Extras.ReadMe.txt $(srcdir)/Extras.install.py - $(INSTALL) -d "$(DESTDIR)$(PYTHONAPPSDIR)/Extras" - $(INSTALL) $(srcdir)/Extras.ReadMe.txt "$(DESTDIR)$(PYTHONAPPSDIR)/Extras/ReadMe.txt" +installextras: $(srcdir)/Extras.install.py + $(INSTALL) -d "$(DESTDIR)$(prefix)/share/doc/python$(VERSION)/examples" $(RUNSHARED) $(BUILDPYTHON) $(srcdir)/Extras.install.py $(srcdir)/../Tools \ - "$(DESTDIR)$(PYTHONAPPSDIR)/Extras/Tools" + "$(DESTDIR)$(prefix)/share/doc/python$(VERSION)/examples/Tools" ; \ + chmod -R ugo+rX,go-w "$(DESTDIR)$(prefix)/share/doc/python$(VERSION)/examples/Tools" checkapplepython: $(srcdir)/Tools/fixapplepython23.py |