[issue3413] typo in Mac/Makefile.in breaks installing IDLE

Erick Tryzelaar report at bugs.python.org
Sat Jul 19 04:48:34 CEST 2008


New submission from Erick Tryzelaar <idadesub at users.sourceforge.net>:

There's a slight typo in Mac/Makefile.in, where DESDIR was used instead of DESTDIR. This 
patch fixes it:

--- /tmp/Makefile.in	2008-07-18 19:42:29.000000000 -0700
+++ Mac/Makefile.in	2008-07-18 19:42:33.000000000 -0700
@@ -216,7 +216,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"
+	ln -sf $(INSTALLED_PYTHONAPP) 
"$(DESTDIR)$(PYTHONAPPSDIR)/IDLE.app/Contents/MacOS/Python"
 	touch "$(DESTDIR)$(PYTHONAPPSDIR)/IDLE.app"
 
 $(INSTALLED_PYTHONAPP): install_Python

----------
components: Build
messages: 70001
nosy: erickt
severity: normal
status: open
title: typo in Mac/Makefile.in breaks installing IDLE
versions: Python 3.0

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue3413>
_______________________________________


More information about the Python-bugs-list mailing list