]> SALOME platform Git repositories - tools/sat_salome.git/commitdiff
Salome HOME
sat #33094 Can't find a usable init.tcl
authorNabil Ghodbane <nabil.ghodbane@cea.fr>
Fri, 9 Dec 2022 08:46:40 +0000 (09:46 +0100)
committerNabil Ghodbane <nabil.ghodbane@cea.fr>
Fri, 9 Dec 2022 08:46:40 +0000 (09:46 +0100)
products/env_scripts/tcl.py
products/env_scripts/tcltk.py
products/env_scripts/tk.py

index 4432a88c3aedf8c3e0db826102c4f3034199e3c7..cb41c24efc489368bde52614f61dfd8e212101da 100644 (file)
@@ -14,7 +14,7 @@ def set_env(env, prereq_dir, version):
 
     l = []
     l.append(os.path.join(prereq_dir, 'lib'))
-    l.append(os.path.join(prereq_dir, 'lib', 'tcl', env.get('TCL_SHORT_VERSION')))
+    l.append(os.path.join(prereq_dir, 'lib', 'tcl' + env.get('TCL_SHORT_VERSION')))
     #http://computer-programming-forum.com/57-tcl/1dfddc136afccb94.htm
     #Tcl treats the contents of that variable as a list. Be happy, for you can now use drive letters on windows.
     env.prepend('TCLLIBPATH', l, sep=" ")
index 18069de4d4deab44d69b9c1b7a21c7b96f12d4c2..bab12780ee0259933b4e6c6c336bbd91853e29f4 100644 (file)
@@ -16,13 +16,13 @@ def set_env(env, prereq_dir, version):
 
   l = []
   l.append(os.path.join(prereq_dir, 'lib'))
-  l.append(os.path.join(prereq_dir, 'lib', 'tcl', env.get('TCL_SHORT_VERSION')))
+  l.append(os.path.join(prereq_dir, 'lib', 'tcl' + env.get('TCL_SHORT_VERSION')))
   #http://computer-programming-forum.com/57-tcl/1dfddc136afccb94.htm
   #Tcl treats the contents of that variable as a list. Be happy, for you can now use drive letters on windows.
   env.prepend('TCLLIBPATH',l, sep=" ")
   l = []
   l.append(os.path.join(prereq_dir, 'lib'))
-  l.append(os.path.join(prereq_dir, 'lib', 'tk', env.get('TCL_SHORT_VERSION')))
+  l.append(os.path.join(prereq_dir, 'lib', 'tk' + env.get('TCL_SHORT_VERSION')))
   env.prepend('TKLIBPATH', l, sep=" ")
 
   if not platform.system() == "Windows" :
index 4f90200e5f57041f1f533289a6a29612e72fbfa7..91571d731cdd6d69d4001e7968ec2934170280c3 100755 (executable)
@@ -16,7 +16,7 @@ def set_env(env, prereq_dir, version):
     
     l = []
     l.append(os.path.join(root, 'lib'))
-    l.append(os.path.join(root, 'lib', 'tk', env.get('TCL_SHORT_VERSION')))
+    l.append(os.path.join(root, 'lib', 'tk' + env.get('TCL_SHORT_VERSION')))
     #http://computer-programming-forum.com/57-tcl/1dfddc136afccb94.htm
     #Tcl treats the contents of that variable as a list. Be happy, for you can now use drive letters on windows.
     env.prepend('TKLIBPATH', l, sep=" ")