[Python-checkins] r43189 - external/tix-8.4.0/win/make_pkgIndex.tcl

martin.v.loewis python-checkins at python.org
Tue Mar 21 14:19:21 CET 2006


Author: martin.v.loewis
Date: Tue Mar 21 14:19:20 2006
New Revision: 43189

Modified:
   external/tix-8.4.0/win/make_pkgIndex.tcl
Log:
Add missing backslash

Modified: external/tix-8.4.0/win/make_pkgIndex.tcl
==============================================================================
--- external/tix-8.4.0/win/make_pkgIndex.tcl	(original)
+++ external/tix-8.4.0/win/make_pkgIndex.tcl	Tue Mar 21 14:19:20 2006
@@ -22,6 +22,6 @@
 puts -nonewline $fd "[file tail [lindex $argv 1]]\]\" Tix\]"
 puts $fd ""
 puts -nonewline $fd "package ifneeded wm_default 1.0 "
-puts -nonewline $fd "\[list source \[file join $dir pref WmDefault.tcl\]\]"
+puts -nonewline $fd "\[list source \[file join \$dir pref WmDefault.tcl\]\]"
 puts $fd ""
 close $fd


More information about the Python-checkins mailing list