pkgsrc/x11/blt/patches/patch-ac
abs 0395d12355 Fix build problem on hosts identified as 'netbsdelf'. Does not change anything
on systems that already worked, so no PKGREVISION bump.
2002-03-31 14:37:30 +00:00

13 lines
476 B
Text

$NetBSD: patch-ac,v 1.2 2002/03/31 14:37:31 abs Exp $
--- library/pkgIndex.tcl.in.orig Fri Oct 8 07:40:46 1999
+++ library/pkgIndex.tcl.in
@@ -10,7 +10,7 @@
set library BLT${version_no_dots}${suffix}
global tcl_platform
if { $tcl_platform(platform) == "unix" } {
- set library [file join [file dirname $dir] lib${library}]
+ set library [file join [file dirname $dir] .. lib${library}]
}
package ifneeded BLT ${version} [list load $library BLT]
}