[Skencil-commits] r782 - skencil/branches/skencil-0.6

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Sun Oct 31 02:44:22 CEST 2010


Author: igor_n
Date: 2010-10-31 02:44:19 +0200 (Sun, 31 Oct 2010)
New Revision: 782

Modified:
   skencil/branches/skencil-0.6/setup.py
Log:
fix for OpenSuse 64bit

Modified: skencil/branches/skencil-0.6/setup.py
===================================================================
--- skencil/branches/skencil-0.6/setup.py	2010-10-31 00:18:58 UTC (rev 781)
+++ skencil/branches/skencil-0.6/setup.py	2010-10-31 00:44:19 UTC (rev 782)
@@ -229,8 +229,12 @@
     if not tcl_ver:
         if os.path.isfile('/usr/lib/libtcl8.5.so'):
             tcl_ver = '8.5'
+        if os.path.isfile('/usr/lib64/libtcl8.5.so'):
+            tcl_ver = '8.5'
         if os.path.isfile('/usr/lib/libtcl8.6.so'):
             tcl_ver = '8.6'
+        if os.path.isfile('/usr/lib64/libtcl8.6.so'):
+            tcl_ver = '8.6'
             
     if not tcl_ver:
         print 'System tcl/tk =>8.5 libraries have not found!'



More information about the Skencil-commits mailing list