diff options
author | Mikko Rapeli <mikko.rapeli@linaro.org> | 2024-07-26 12:41:13 +0300 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-07-26 09:51:39 -0700 |
commit | db91757e7bd98494666ca00bc7727a7607b6004f (patch) | |
tree | c5cb6927c54b4f06fc16b6c69980e13d052aada3 | |
parent | e77f9f2feb6b9b9c86e3d815415e4bb521444538 (diff) | |
download | meta-openembedded-db91757e7bd98494666ca00bc7727a7607b6004f.tar.gz |
gcab: ignore buildpaths error from sources
gcab-src has some meson generated files which embed
absolute paths from build environment. meson seems
ot do this on purpose to fix other issues.
Ignored those issues for now.
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-gnome/gcab/gcab_1.6.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta-oe/recipes-gnome/gcab/gcab_1.6.bb b/meta-oe/recipes-gnome/gcab/gcab_1.6.bb index 4278fc9453..49c64f0ba6 100644 --- a/meta-oe/recipes-gnome/gcab/gcab_1.6.bb +++ b/meta-oe/recipes-gnome/gcab/gcab_1.6.bb | |||
@@ -22,3 +22,6 @@ PACKAGECONFIG[nls] = "-Dnls=true,-Dnls=false" | |||
22 | PACKAGECONFIG[tests] = "-Dtests=true -Dinstalled_tests=true,-Dtests=false -Dinstalled_tests=false" | 22 | PACKAGECONFIG[tests] = "-Dtests=true -Dinstalled_tests=true,-Dtests=false -Dinstalled_tests=false" |
23 | 23 | ||
24 | BBCLASSEXTEND = "native" | 24 | BBCLASSEXTEND = "native" |
25 | |||
26 | # meson embeds absolute paths to generated files on purpose | ||
27 | INSANE_SKIP:gcab-src += "buildpaths" | ||