projects
/
project
/
libubox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
38d7032
)
scripts: devel-build: add missing LUAPATH
author
Álvaro Fernández Rojas
<
[email protected]
>
Tue, 18 Nov 2025 09:36:26 +0000
(10:36 +0100)
committer
Álvaro Fernández Rojas
<
[email protected]
>
Tue, 18 Nov 2025 09:38:42 +0000
(10:38 +0100)
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 <
[email protected]
>
scripts/devel-build.sh
patch
|
blob
|
history
diff --git
a/scripts/devel-build.sh
b/scripts/devel-build.sh
index 2b33ce508792f8c96923eb7abeedf69dfe154ad7..5a7c7a416523180dac682674308711198c8649a0 100755
(executable)
--- 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}"