summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAriadne Conill <ariadne@dereferenced.org>2021-12-13 14:58:20 -0600
committerTimo Teräs <timo.teras@iki.fi>2021-12-14 18:46:18 +0000
commit46a2049d46fb90a09221dd8f257252c2cc5dcded (patch)
tree6614b50630fd2609650b4f8ac199d35fe869f3a2
parent2ac0a72430fa3ec006a01a424ef52d650315e4a1 (diff)
downloadapk-tools-46a2049d46fb90a09221dd8f257252c2cc5dcded.tar.gz
apk-tools-46a2049d46fb90a09221dd8f257252c2cc5dcded.tar.bz2
apk-tools-46a2049d46fb90a09221dd8f257252c2cc5dcded.tar.xz
apk-tools-46a2049d46fb90a09221dd8f257252c2cc5dcded.zip
meson: fix underlinking issue with lua module
-rw-r--r--src/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/meson.build b/src/meson.build
index 9422ca6..3cc4ce0 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -158,7 +158,7 @@ if(lua_dep.found())
libluaapk = library(
'luaapk',
luaapk_src,
- dependencies: [lua_dep, libapk_dep],
+ dependencies: [lua_dep, libapk_dep, shared_deps],
install: true,
install_dir: lua_dep.get_pkgconfig_variable('libdir'),
c_args: apk_cargs,