From bbea7972a40e86710be6b03e106efdd32fbcaca5 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sat, 5 Jul 2008 22:51:21 +0000 Subject: make the symlink to Python be created on install for IDLE.app --- Mac/IDLE/IDLE.app/Contents/MacOS/Python | 1 - Mac/Makefile.in | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) delete mode 120000 Mac/IDLE/IDLE.app/Contents/MacOS/Python diff --git a/Mac/IDLE/IDLE.app/Contents/MacOS/Python b/Mac/IDLE/IDLE.app/Contents/MacOS/Python deleted file mode 120000 index c8ff949..0000000 --- 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 f4bf9af..8cabb28 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 -- cgit v0.12