[issue3414] frameworkinstall doesn't create Python.app, which breaks python

Erick Tryzelaar report at bugs.python.org
Sat Jul 19 06:07:32 CEST 2008


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

Hello again!

It looks like doing "make frameworkinstall maninstall" isn't creating 
"Python.framework/Versions/3.0/Resources/Python.app", so when I try to 
run python it errors out with: "python3.0: execv: 
/opt/local/Library/Frameworks/Python.framework/Versions/3.0/Resources/Py
thon.app/Contents/MacOS/Python: No such file or directory". In order to 
get that file created, I need to manually run "cd Mac && make 
install_Python".

This patch fixes it, but I'm not sure if this is the proper fix:

--- Mac/Makefile.in.old	2008-07-18 20:59:44.000000000 -0700
+++ Mac/Makefile.in	2008-07-18 20:57:44.000000000 -0700
@@ -46,7 +46,7 @@
 compileall=$(srcdir)/../Lib/compileall.py
 
 installapps: install_PythonLauncher install_IDLE checkapplepython 
install_pythonw \
-	install_versionedtools
+	install_versionedtools install_Python
 
 installapps4way: install_Python4way install_BuildApplet 
install_PythonLauncher install_IDLE install_pythonw4way 
install_versionedtools

----------
components: Build
messages: 70004
nosy: erickt
severity: normal
status: open
title: frameworkinstall doesn't create Python.app, which breaks python
type: behavior
versions: Python 3.0

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


More information about the Python-bugs-list mailing list