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.

Author erickt
Recipients erickt
Date 2008-07-19.04:07:30
SpamBayes Score 0.00027870265
Marked as misclassified No
Message-id <1216440452.24.0.507220813764.issue3414@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2008-07-19 04:07:32ericktsetspambayes_score: 0.000278703 -> 0.00027870265
recipients: + erickt
2008-07-19 04:07:32ericktsetspambayes_score: 0.000278703 -> 0.000278703
messageid: <1216440452.24.0.507220813764.issue3414@psf.upfronthosting.co.za>
2008-07-19 04:07:31ericktlinkissue3414 messages
2008-07-19 04:07:30ericktcreate