[Python-checkins] r88005 - in python/branches/py3k: Mac/Makefile.in Misc/NEWS

ned.deily python-checkins at python.org
Sat Jan 15 06:05:53 CET 2011


Author: ned.deily
Date: Sat Jan 15 06:05:53 2011
New Revision: 88005

Log:
#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.



Modified:
   python/branches/py3k/Mac/Makefile.in
   python/branches/py3k/Misc/NEWS

Modified: python/branches/py3k/Mac/Makefile.in
==============================================================================
--- python/branches/py3k/Mac/Makefile.in	(original)
+++ python/branches/py3k/Mac/Makefile.in	Sat Jan 15 06:05:53 2011
@@ -180,6 +180,8 @@
 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

Modified: python/branches/py3k/Misc/NEWS
==============================================================================
--- python/branches/py3k/Misc/NEWS	(original)
+++ python/branches/py3k/Misc/NEWS	Sat Jan 15 06:05:53 2011
@@ -226,6 +226,10 @@
 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.


More information about the Python-checkins mailing list