]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
#10843: Install the Tools directory on OS X in the applications
authorNed Deily <nad@acm.org>
Sat, 15 Jan 2011 05:05:53 +0000 (05:05 +0000)
committerNed Deily <nad@acm.org>
Sat, 15 Jan 2011 05:05:53 +0000 (05:05 +0000)
        Extras (/Applications/Python 3.n/Extras/) where the Demo
        directory had previous been installed.

Mac/Makefile.in
Misc/NEWS

index 7be4625748dc9849340c4db762b43ec5ee29a375..bc0c90d9686cb785f5c78e3e15d2234e5fb5ab9b 100644 (file)
@@ -180,6 +180,8 @@ $(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"
+       $(RUNSHARED) $(BUILDPYTHON) $(srcdir)/Extras.install.py $(srcdir)/../Tools \
+               "$(DESTDIR)$(PYTHONAPPSDIR)/Extras/Tools"
 
 
 checkapplepython: $(srcdir)/Tools/fixapplepython23.py
index c84efe1952968f10d40117e80d21779bead9f60e..08d5398ac64c6680d4c773e33cdf2493e8ee4bfc 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -226,6 +226,10 @@ Build
 Tools/Demos
 -----------
 
+- Issue #10843: Install the Tools directory on OS X in the applications
+  Extras (/Applications/Python 3.n/Extras/) where the Demo directory
+  had previous been installed.
+
 - Issue #7962: The Demo directory is gone.  Most of the old and unmaintained
   demos have been removed, others integrated in documentation or a new
   Tools/demo subdirectory.