blob: 540583dca1aafec2fe0ddfcc9836cd4ec9387887 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
$NetBSD: patch-ad,v 1.3 2022/01/01 09:20:41 dholland Exp $
Don't hardcode the install prefix.
--- sequencer/src/Filter.c.orig Mon Jul 2 08:59:48 2001
+++ sequencer/src/Filter.c
@@ -347,7 +347,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);
}
|