[openwrt/openwrt] apk: host: set lua version to 5.1 to fix help
LEDE Commits
lede-commits at lists.infradead.org
Thu Nov 14 03:39:48 PST 2024
jogo pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/deeb29e6feccf1359d15f708a91bb53bc957bbe0
commit deeb29e6feccf1359d15f708a91bb53bc957bbe0
Author: Jonas Gorski <jonas.gorski at gmail.com>
AuthorDate: Thu Nov 14 11:21:41 2024 +0100
apk: host: set lua version to 5.1 to fix help
Commit b2a84c86e3 ("apk: host: make the help available") enabled the
host build for lua (5.1) as a dependency, but apk defaults to lua 5.3.
This caused it to ignore our lua, and only build the help if the host
system had lua 5.3 installed.
Fix this by explicitly setting the lua version to ours.
Fixes: b2a84c86e3 ("apk: host: make the help available")
Signed-off-by: Jonas Gorski <jonas.gorski at gmail.com>
---
package/system/apk/Makefile | 1 +
1 file changed, 1 insertion(+)
diff --git a/package/system/apk/Makefile b/package/system/apk/Makefile
index 2d637fa180..fec6d5325c 100644
--- a/package/system/apk/Makefile
+++ b/package/system/apk/Makefile
@@ -53,6 +53,7 @@ MESON_HOST_VARS+=VERSION=$(PKG_VERSION)
MESON_VARS+=VERSION=$(PKG_VERSION)
MESON_HOST_ARGS += \
+ -Dlua_version=5.1 \
-Dcompressed-help=false \
-Ddocs=disabled \
-Durl_backend=wget \
More information about the lede-commits
mailing list