Skip to content

Commit bd72d44

Browse files
author
ronald.oussoren
committed
Fix for issue 3433
git-svn-id: http://svn.python.org/projects/python/trunk@68150 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent 26a22d2 commit bd72d44

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Mac/IDLE/Makefile.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ all: IDLE.app
2929
install: IDLE.app $(srcdir)/config-main.def $(srcdir)/config-extensions.def
3030
test -d "$(DESTDIR)$(PYTHONAPPSDIR)" || mkdir -p "$(DESTDIR)$(PYTHONAPPSDIR)"
3131
-test -d "$(DESTDIR)$(PYTHONAPPSDIR)/IDLE.app" && rm -r "$(DESTDIR)$(PYTHONAPPSDIR)/IDLE.app"
32-
cp -PR IDLE.app "$(DESTDIR)$(PYTHONAPPSDIR)"
32+
/bin/cp -PR IDLE.app "$(DESTDIR)$(PYTHONAPPSDIR)"
3333
touch "$(DESTDIR)$(PYTHONAPPSDIR)/IDLE.app"
34-
cp $(srcdir)/config-main.def "$(DESTDIR)$(prefix)/lib/python$(VERSION)/idlelib/config-main.def"
35-
cp $(srcdir)/config-extensions.def "$(DESTDIR)$(prefix)/lib/python$(VERSION)/idlelib/config-extensions.def"
34+
/bin/cp $(srcdir)/config-main.def "$(DESTDIR)$(prefix)/lib/python$(VERSION)/idlelib/config-main.def"
35+
/bin/cp $(srcdir)/config-extensions.def "$(DESTDIR)$(prefix)/lib/python$(VERSION)/idlelib/config-extensions.def"
3636

3737
clean:
3838
rm -rf IDLE.app

Mac/PythonLauncher/Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ all: Python\ Launcher.app
2929
install: Python\ Launcher.app
3030
test -d "$(DESTDIR)$(PYTHONAPPSDIR)" || mkdir -p "$(DESTDIR)$(PYTHONAPPSDIR)"
3131
-test -d "$(DESTDIR)$(PYTHONAPPSDIR)/Python Launcher.app" && rm -r "$(DESTDIR)$(PYTHONAPPSDIR)/Python Launcher.app"
32-
cp -r "Python Launcher.app" "$(DESTDIR)$(PYTHONAPPSDIR)"
32+
/bin/cp -r "Python Launcher.app" "$(DESTDIR)$(PYTHONAPPSDIR)"
3333
touch "$(DESTDIR)$(PYTHONAPPSDIR)/Python Launcher.app"
3434

3535
clean:

0 commit comments

Comments
 (0)