about summary refs log tree commit diff
path: root/setup.py
diff options
context:
space:
mode:
authorPaweł Jastrzębski <[email protected]>2014-01-20 22:26:50 +0100
committerPaweł Jastrzębski <[email protected]>2014-01-20 22:26:50 +0100
commit786d2a9e1f313305b88e1b83d1023402e9c4b1d1 (patch)
tree8389376f2a30511187d35ebd7e381354d59a72ff /setup.py
parentLinux: Completly disabled QSystemTrayIcon (diff)
downloadkcc-786d2a9e1f313305b88e1b83d1023402e9c4b1d1.tar.gz
kcc-786d2a9e1f313305b88e1b83d1023402e9c4b1d1.tar.bz2
kcc-786d2a9e1f313305b88e1b83d1023402e9c4b1d1.zip
Added option to select output directory
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 8f5e2f1..6e5b5b9 100755
--- a/setup.py
+++ b/setup.py
@@ -52,9 +52,9 @@ if platform == "darwin":
         )
     )
 elif platform == "win32":
-    import platform
+    import platform as arch
     from cx_Freeze import setup, Executable
-    if platform.architecture()[0] == '64bit':
+    if arch.architecture()[0] == '64bit':
         library = 'libEGL64.dll'
     else:
         library = 'libEGL32.dll'