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: frameworkinstall doesn't create Python.app, which breaks python
Type: behavior Stage:
Components: Build Versions: Python 3.0
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: erickt, georg.brandl
Priority: normal Keywords:

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

Messages (2)
msg70004 - (view) Author: Erick Tryzelaar (erickt) Date: 2008-07-19 04:07
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
msg70010 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-07-19 09:58
Fixed in r65130.
History
Date User Action Args
2022-04-11 14:56:36adminsetgithub: 47664
2008-07-19 09:58:19georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg70010
nosy: + georg.brandl
2008-07-19 04:07:31ericktcreate