From: Benjamin Peterson Date: Sat, 5 Jul 2008 22:51:21 +0000 (+0000) Subject: make the symlink to Python be created on install for IDLE.app X-Git-Tag: v3.0b2~90 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bbea7972a40e86710be6b03e106efdd32fbcaca5;p=thirdparty%2FPython%2Fcpython.git make the symlink to Python be created on install for IDLE.app --- diff --git a/Mac/IDLE/IDLE.app/Contents/MacOS/Python b/Mac/IDLE/IDLE.app/Contents/MacOS/Python deleted file mode 120000 index c8ff9490e806..000000000000 --- a/Mac/IDLE/IDLE.app/Contents/MacOS/Python +++ /dev/null @@ -1 +0,0 @@ -/Library/Frameworks/Python.framework/Versions/2.6/Resources/Python.app/Contents/MacOS/Python \ No newline at end of file diff --git a/Mac/Makefile.in b/Mac/Makefile.in index f4bf9af551b3..8cabb281c8e1 100644 --- a/Mac/Makefile.in +++ b/Mac/Makefile.in @@ -162,6 +162,7 @@ install_IDLE: 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