Fix linux binary installer bug

This commit is contained in:
Kovid Goyal
2010-08-20 15:27:53 -06:00
parent 71839f0a35
commit 88cd5dc1a6
48 changed files with 4084 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
#------------------------------------------------------------------------------
# ConsoleKeepPath.py
# Initialization script for cx_Freeze which leaves the path alone and does
# not set the sys.frozen attribute.
#------------------------------------------------------------------------------
import sys
import zipimport
m = __import__("__main__")
importer = zipimport.zipimporter(INITSCRIPT_ZIP_FILE_NAME)
code = importer.get_code(m.__name__)
exec code in m.__dict__
if sys.version_info[:2] >= (2, 5):
module = sys.modules.get("threading")
if module is not None:
module._shutdown()