From: Álvaro Fernández Rojas Date: Tue, 18 Nov 2025 09:36:26 +0000 (+0100) Subject: scripts: devel-build: add missing LUAPATH X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=edaf77da740d13bb46e460695709bab6fe395345;p=project%2Flibubox.git scripts: devel-build: add missing LUAPATH Add missing LUA_PATH, which prevents installing `uloop.so` to `/usr/local/lib/lua/5.1`. Fixes https://github.com/openwrt/libubox/issues/36. Signed-off-by: Álvaro Fernández Rojas --- diff --git a/scripts/devel-build.sh b/scripts/devel-build.sh index 2b33ce5..5a7c7a4 100755 --- a/scripts/devel-build.sh +++ b/scripts/devel-build.sh @@ -62,6 +62,7 @@ cmake \ -S . \ -B "${BUILDDIR}" \ -DCMAKE_PREFIX_PATH="${BUILDDIR}" \ + -DLUAPATH=${BUILDDIR}/lib/lua \ --install-prefix "${BUILDDIR}" \ ${BUILD_ARGS} make -C "${BUILDDIR}"