blob: 4f13a564d1be2a63a986be383795487f44d403d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
$NetBSD: patch-ab,v 1.3 2022/01/01 09:20:41 dholland Exp $
Don't hardcode the install prefix.
--- editor/src/Filter.c.orig Mon Jul 2 09:10:49 2001
+++ editor/src/Filter.c
@@ -597,7 +597,7 @@
char path[3000];
fprintf(stderr, "Rosegarden: Environment variable TCLLIBPATH is not set; "
"guessing!\n");
- sprintf(path, "TCLLIBPATH=%s %s /usr/local/lib/rosegarden/petal",
+ sprintf(path, "TCLLIBPATH=%s %s "RGLIBDIR"/petal",
homeFilterDir, appData.filtersDirectory);
putenv(path);
}
|