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

martin.v.loewis python-checkins at python.org
Fri Jan 19 19:55:56 CET 2007


Author: martin.v.loewis
Date: Fri Jan 19 19:55:55 2007
New Revision: 53500

Modified:
   external/tix-8.4.0/win/make_pkgIndex.tcl
Log:
Look for tix84.dll in the DLLs directory, not bin.


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	Fri Jan 19 19:55:55 2007
@@ -18,7 +18,7 @@
 set fd [open [lindex $argv 0] {WRONLY TRUNC CREAT}]
 puts -nonewline $fd "package ifneeded Tix [lindex $argv 2] "
 puts -nonewline $fd "\[list load \"\[file join \[file dirname "
-puts -nonewline $fd "\[file dirname \$dir\]\] bin "
+puts -nonewline $fd "\[file dirname \$dir\]\] DLLs "
 puts -nonewline $fd "[file tail [lindex $argv 1]]\]\" Tix\]"
 puts $fd ""
 puts -nonewline $fd "package ifneeded wm_default 1.0 "


More information about the Python-checkins mailing list