diff options
author | Ned Deily <nad@acm.org> | 2011-02-07 16:44:19 +0000 |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2011-02-07 16:44:19 +0000 |
commit | f72e0e007ca0cf5d874340b0c51d4232c87c2a6c (patch) | |
tree | ef105a2872efbd5aa52ad23df764657a4dc32205 /Mac | |
parent | 618203b454f19626be3facc7d0ba9c97bec35bb5 (diff) | |
download | cpython-f72e0e007ca0cf5d874340b0c51d4232c87c2a6c.tar.gz |
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')
-rw-r--r-- | Mac/BuildScript/resources/ReadMe.txt | 2 | ||||
-rw-r--r-- | Mac/Extras.ReadMe.txt | 5 | ||||
-rw-r--r-- | Mac/Makefile.in | 8 |
3 files changed, 5 insertions, 10 deletions
diff --git a/Mac/BuildScript/resources/ReadMe.txt b/Mac/BuildScript/resources/ReadMe.txt index 761cffb06b..f1beda0fbe 100644 --- a/Mac/BuildScript/resources/ReadMe.txt +++ b/Mac/BuildScript/resources/ReadMe.txt @@ -24,7 +24,7 @@ of Tcl/Tk for this version of Python and Mac OS X. ******************* The installer puts applications, an "Update Shell Profile" command, -and an Extras folder containing demo programs and tools into the +and a link to the optionally installed Python Documentation into the "Python $VERSION" subfolder of the system Applications folder, and puts the underlying machinery into the folder $PYTHONFRAMEWORKINSTALLDIR. It can diff --git a/Mac/Extras.ReadMe.txt b/Mac/Extras.ReadMe.txt deleted file mode 100644 index 2d7fd42ac6..0000000000 --- a/Mac/Extras.ReadMe.txt +++ /dev/null @@ -1,5 +0,0 @@ -This folder contains examples of Python usage and useful scripts and tools. - -You should be aware that these are not Macintosh-specific but are shared -among Python on all platforms, so there are some that only run on Windows -or Unix or another platform, and/or make little sense on a Macintosh. diff --git a/Mac/Makefile.in b/Mac/Makefile.in index bc0c90d968..5e57b57942 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 |