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', '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" :
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=" ")