diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-08-24 18:33:00 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-08-25 11:39:22 +0900 |
| commit | 6a00d2228fc9e323ec5c896c95136a996e112314 (patch) | |
| tree | caf4bd8b39f15c07fd677d9b67f3ce29810ff37c | |
| parent | 4ecf6a81a3bda8d30ea64335921f93457df66b79 (diff) | |
| download | krusader-6a00d2228fc9e323ec5c896c95136a996e112314.tar.gz krusader-6a00d2228fc9e323ec5c896c95136a996e112314.zip | |
Fix FTBFS in local builds due to missing linkage of libkjs
(undefined reference to symbol KJS::ValueImp::dispatchToObject(ExecState*))
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
| -rw-r--r-- | krusader/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/krusader/Makefile.am b/krusader/Makefile.am index 9fd2f73..75038fe 100644 --- a/krusader/Makefile.am +++ b/krusader/Makefile.am @@ -6,7 +6,7 @@ endif # the condition for this is found in configure.in.in if include_libkjsembed AM_CPPFLAGS = -D__KJSEMBED__ -LIB_KJSEMBED = -lkjsembed +LIB_KJSEMBED = -lkjsembed -lkjs KRJSDIR = KrJS LIB_KRJS = KrJS/libKrJS.a endif |
