diff options
author | Khem Raj <raj.khem@gmail.com> | 2025-01-28 20:19:56 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-01-29 17:43:04 -0800 |
commit | 81b66449909e273a53b155f83cd1604c8f805ea5 (patch) | |
tree | 3c430699c50a2844009854060147440c449b21f5 | |
parent | 3362f56e228e65e177601555ac130cb9ebb22637 (diff) | |
download | meta-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.bb | 2 |
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}" | |||
16 | inherit pkgconfig | 16 | inherit pkgconfig |
17 | 17 | ||
18 | do_compile() { | 18 | do_compile() { |
19 | ${S}/build-aux/luke | 19 | ${S}/build-aux/luke LUA_INCDIR=${STAGING_INCDIR} |
20 | } | 20 | } |
21 | 21 | ||
22 | do_install() { | 22 | do_install() { |