[Python-3000-checkins] r64749 - in python/branches/py3k/Mac: IDLE/IDLE.app/Contents/MacOS/Python Makefile.in

benjamin.peterson python-3000-checkins at python.org
Sun Jul 6 00:51:21 CEST 2008


Author: benjamin.peterson
Date: Sun Jul  6 00:51:21 2008
New Revision: 64749

Log:
make the symlink to Python be created on install for IDLE.app

Removed:
   python/branches/py3k/Mac/IDLE/IDLE.app/Contents/MacOS/Python
Modified:
   python/branches/py3k/Mac/Makefile.in

Deleted: python/branches/py3k/Mac/IDLE/IDLE.app/Contents/MacOS/Python
==============================================================================
--- python/branches/py3k/Mac/IDLE/IDLE.app/Contents/MacOS/Python	Sun Jul  6 00:51:21 2008
+++ (empty file)
@@ -1 +0,0 @@
-link /Library/Frameworks/Python.framework/Versions/2.6/Resources/Python.app/Contents/MacOS/Python
\ No newline at end of file

Modified: python/branches/py3k/Mac/Makefile.in
==============================================================================
--- python/branches/py3k/Mac/Makefile.in	(original)
+++ python/branches/py3k/Mac/Makefile.in	Sun Jul  6 00:51:21 2008
@@ -162,6 +162,7 @@
 	test -d "$(DESTDIR)$(PYTHONAPPSDIR)" || mkdir -p "$(DESTDIR)$(PYTHONAPPSDIR)"
 	-test -d "$(DESTDIR)$(PYTHONAPPSDIR)/IDLE.app" && rm -r "$(DESTDIR)$(PYTHONAPPSDIR)/IDLE.app"
 	cp -PR IDLE/IDLE.app "$(DESTDIR)$(PYTHONAPPSDIR)"
+	ln -sf $(INSTALLED_PYTHONAPP) "$(DESDIR)$(PYTHONAPPSDIR)/IDLE.app/Contents/MacOS/Python"
 	touch "$(DESTDIR)$(PYTHONAPPSDIR)/IDLE.app"
 
 $(INSTALLED_PYTHONAPP): install_Python


More information about the Python-3000-checkins mailing list