summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-08-24 18:33:00 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-08-25 19:13:19 +0900
commit3eb33ce89523214d08913a75f2919f5d67d3e6dc (patch)
tree34eec175cc19cbadfbbb9ca16e46f67b559648d7
parent753b0ef6fd7d485943c632286c5eb45e793b31dd (diff)
downloadkrusader-3eb33ce8.tar.gz
krusader-3eb33ce8.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> (cherry picked from commit 6a00d2228fc9e323ec5c896c95136a996e112314)
-rw-r--r--krusader/Makefile.am2
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