This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: typo in Mac/Makefile.in breaks installing IDLE
Type: Stage:
Components: Build Versions: Python 3.0
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, erickt
Priority: normal Keywords:

Created on 2008-07-19 02:48 by erickt, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg70001 - (view) Author: Erick Tryzelaar (erickt) Date: 2008-07-19 02:48
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
msg70002 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2008-07-19 02:57
Thanks! Fixed in r65129.
History
Date User Action Args
2022-04-11 14:56:36adminsetgithub: 47663
2008-07-19 02:57:07benjamin.petersonsetstatus: open -> closed
resolution: fixed
messages: + msg70002
nosy: + benjamin.peterson
2008-07-19 02:48:33ericktcreate