summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2025-01-28 20:19:56 -0800
committerKhem Raj <raj.khem@gmail.com>2025-01-29 17:43:04 -0800
commit81b66449909e273a53b155f83cd1604c8f805ea5 (patch)
tree3c430699c50a2844009854060147440c449b21f5
parent3362f56e228e65e177601555ac130cb9ebb22637 (diff)
downloadmeta-openembedded-81b66449909e273a53b155f83cd1604c8f805ea5.tar.gz
luaposix: Fix LUA_INCDIR path
If not specified on build commandline for luke, it results in pulling it from build host development headers under /usr/include this was always happening but with recent fixes to GCC poisoning host includes patch, this issue has come to fore. Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-devtools/luaposix/luaposix_36.2.1.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-devtools/luaposix/luaposix_36.2.1.bb b/meta-oe/recipes-devtools/luaposix/luaposix_36.2.1.bb
index 1d27eb2588..7fb0965813 100644
--- a/meta-oe/recipes-devtools/luaposix/luaposix_36.2.1.bb
+++ b/meta-oe/recipes-devtools/luaposix/luaposix_36.2.1.bb
@@ -16,7 +16,7 @@ B = "${S}"
16inherit pkgconfig 16inherit pkgconfig
17 17
18do_compile() { 18do_compile() {
19 ${S}/build-aux/luke 19 ${S}/build-aux/luke LUA_INCDIR=${STAGING_INCDIR}
20} 20}
21 21
22do_install() { 22do_install() {