[New-bugs-announce] [issue16821] bundlebuilder broken in 2.7
Barry Alan Scott
report at bugs.python.org
Sun Dec 30 22:39:39 CET 2012
New submission from Barry Alan Scott:
bundlebuild in pytthon 2.7 fails to create usable applications.
After examining the code there are a number of coding errors:
1. optimize will puts the -O in the wrong place in the argv
2. Modules.zip is never added to the path
The bunderbuilder in 2.6 can be made to work with 2.7 by
applying the following patch to the 2.6 code.
--- bundlebuilder.py~ 2012-12-30 21:32:40.000000000 +0000
+++ bundlebuilder.py 2012-12-30 21:32:40.000000000 +0000
@@ -337,7 +337,6 @@
"Python", # the Python core library
"Resources/English.lproj",
"Resources/Info.plist",
- "Resources/version.plist",
]
def isFramework():
----------
messages: 178616
nosy: barry-scott
priority: normal
severity: normal
status: open
title: bundlebuilder broken in 2.7
type: performance
versions: Python 2.7
_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue16821>
_______________________________________
More information about the New-bugs-announce
mailing list