diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2009-01-02 11:48:29 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2009-01-02 11:48:29 (GMT) |
commit | af1186071a3666277da8725e19056282d407fd5b (patch) | |
tree | c0ca3b2e770a56c3e7d37bdfb0e3dd220b8bb4aa /Mac/PythonLauncher | |
parent | 374e220bcb1ee71053c18c0b4e409cfa69881722 (diff) | |
download | cpython-af1186071a3666277da8725e19056282d407fd5b.zip cpython-af1186071a3666277da8725e19056282d407fd5b.tar.gz cpython-af1186071a3666277da8725e19056282d407fd5b.tar.bz2 |
Fix for issue 3433
Diffstat (limited to 'Mac/PythonLauncher')
-rw-r--r-- | Mac/PythonLauncher/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/PythonLauncher/Makefile.in b/Mac/PythonLauncher/Makefile.in index 2d8da33..96493ad 100644 --- a/Mac/PythonLauncher/Makefile.in +++ b/Mac/PythonLauncher/Makefile.in @@ -27,7 +27,7 @@ OBJECTS=FileSettings.o MyAppDelegate.o MyDocument.o PreferencesWindowController. install: Python\ Launcher.app test -d "$(DESTDIR)$(PYTHONAPPSDIR)" || mkdir -p "$(DESTDIR)$(PYTHONAPPSDIR)" -test -d "$(DESTDIR)$(PYTHONAPPSDIR)/Python Launcher.app" && rm -r "$(DESTDIR)$(PYTHONAPPSDIR)/Python Launcher.app" - cp -r "Python Launcher.app" "$(DESTDIR)$(PYTHONAPPSDIR)" + /bin/cp -r "Python Launcher.app" "$(DESTDIR)$(PYTHONAPPSDIR)" touch "$(DESTDIR)$(PYTHONAPPSDIR)/Python Launcher.app" |