blob: e5f5648e49f646d5c31eb807a8e995afac7d5306 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
$NetBSD: patch-aa,v 1.2 2006/10/05 09:32:02 obache Exp $
Set up cbrowser so that it can find its subsidiary tcl files
--- cbrowser.orig 2005-07-23 18:02:24.000000000 +0200
+++ cbrowser
@@ -2989,7 +2989,7 @@
while {![catch {file readlink $link} result]} {
set link [file join [file dirname $link] $result]
}
-set sourcedir [file dirname $link]
+set sourcedir [file dirname [file dirname $link]]/share/cbrowser;
# Set up the auto_path to find things in the directory where this lives.
lappend auto_path $sourcedir
|