about summary refs log tree commit diff
path: root/kcc.py
diff options
context:
space:
mode:
authorPaweł Jastrzębski <pawelj@iosphe.re>2017-10-14 22:10:31 +0200
committerPaweł Jastrzębski <pawelj@iosphe.re>2017-10-14 22:10:31 +0200
commitaa978ab24631410126f7391e96cb643aa61c4b20 (patch)
tree411725e43c3d70ef3397c4301df0be70da3be5bb /kcc.py
parentMerge pull request #250 from ciromattia/dev (diff)
downloadkcc-aa978ab24631410126f7391e96cb643aa61c4b20.tar.gz
kcc-aa978ab24631410126f7391e96cb643aa61c4b20.tar.bz2
kcc-aa978ab24631410126f7391e96cb643aa61c4b20.zip
Disabled old multiprocessing hack
Diffstat (limited to 'kcc.py')
-rwxr-xr-xkcc.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/kcc.py b/kcc.py
index afd4796..618c2cb 100755
--- a/kcc.py
+++ b/kcc.py
@@ -34,6 +34,7 @@ if sys.platform.startswith('darwin'):
     else:
         os.environ['PATH'] = os.path.dirname(os.path.abspath(__file__)) + '/other/osx/:' + os.environ['PATH']
 elif sys.platform.startswith('win'):
+    '''
     import multiprocessing.popen_spawn_win32 as forking
 
     class _Popen(forking.Popen):
@@ -50,7 +51,7 @@ elif sys.platform.startswith('win'):
                     else:
                         os.putenv('_MEIPASS2', '')
     forking.Popen = _Popen
-
+    '''
     if getattr(sys, 'frozen', False):
         os.chdir(os.path.dirname(os.path.abspath(sys.executable)))
     else: