about summary refs log tree commit diff
path: root/other
diff options
context:
space:
mode:
authorPaweł Jastrzębski <pawelj@vulturis.eu>2014-01-22 17:43:19 +0100
committerPaweł Jastrzębski <pawelj@vulturis.eu>2014-01-22 17:43:19 +0100
commitebe7d910deb304ec0941d47e3e6f30c52b20a5b1 (patch)
treed37167f755c590f9ce11a6a47b56d8a31b27c635 /other
parentAdded experimental Linux setup (diff)
downloadkcc-ebe7d910deb304ec0941d47e3e6f30c52b20a5b1.tar.gz
kcc-ebe7d910deb304ec0941d47e3e6f30c52b20a5b1.tar.bz2
kcc-ebe7d910deb304ec0941d47e3e6f30c52b20a5b1.zip
Reverting setup changes
Diffstat (limited to 'other')
-rw-r--r--other/LinuxInit.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/other/LinuxInit.py b/other/LinuxInit.py
deleted file mode 100644
index 7fa1150..0000000
--- a/other/LinuxInit.py
+++ /dev/null
@@ -1,14 +0,0 @@
-import os
-import sys
-import zipimport
-
-sys.frozen = True
-sys.path = sys.path[:4]
-sys.path.insert(0, '/usr/lib/kcc')
-sys.path.insert(0, '/usr/local/lib/kcc')
-sys.path.insert(0, os.path.join(DIR_NAME, '..', 'lib'))
-
-m = __import__("__main__")
-importer = zipimport.zipimporter(INITSCRIPT_ZIP_FILE_NAME)
-code = importer.get_code(m.__name__)
-exec(code, m.__dict__)