Tomas Janousek e2b1266
Fix the Tcl binding install script -- did not install to /usr/lib64.
Tomas Janousek e2b1266
Tomas Janousek e2b1266
Signed-off-by: Tomas Janousek <tjanouse@redhat.com>
Tomas Janousek e2b1266
---
Tomas Janousek e2b1266
Tomas Janousek e2b1266
--- brltty-3.8/Bindings/Tcl/pkgutil.lib64	2007-06-04 15:20:32.000000000 +0200
Tomas Janousek e2b1266
+++ brltty-3.8/Bindings/Tcl/pkgutil	2007-08-21 15:08:46.000000000 +0200
Tomas Janousek e2b1266
@@ -31,7 +31,7 @@
Tomas Janousek e2b1266
             }
Tomas Janousek e2b1266
             set directory [eval file join / [lrange $components $rootCount end]]
Tomas Janousek e2b1266
 
Tomas Janousek e2b1266
-            if {[string equal [file tail $directory] lib]} {
Tomas Janousek e2b1266
+            if {[string equal [file tail $directory] lib] || [string equal [file tail $directory] lib64]} {
Tomas Janousek e2b1266
                global optionValues packageName packageVersion
Tomas Janousek e2b1266
                return [file join "$optionValues(root)$directory" "$packageName-$packageVersion"]
Tomas Janousek e2b1266
             }