New submission from Erick Tryzelaar <[EMAIL PROTECTED]>:

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 <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3413>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to