diff options
author | Khem Raj <raj.khem@gmail.com> | 2025-05-10 23:58:04 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-05-10 23:58:48 -0700 |
commit | b87ebe9659033c0af152f48bb5ae3cfece4e687b (patch) | |
tree | ce9adf458b12be6ce070bb49a438762a2c863e66 | |
parent | 2045e713186b0a636f4659eb9d2a1eefc110bf0e (diff) | |
download | meta-openembedded-b87ebe9659033c0af152f48bb5ae3cfece4e687b.tar.gz |
gphoto2: Move the sed op on config.h to do_compile
Current code still fails on some AB nodes.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-graphics/gphoto2/gphoto2_2.5.28.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-oe/recipes-graphics/gphoto2/gphoto2_2.5.28.bb b/meta-oe/recipes-graphics/gphoto2/gphoto2_2.5.28.bb index 7b0f0df2e5..63993bfbeb 100644 --- a/meta-oe/recipes-graphics/gphoto2/gphoto2_2.5.28.bb +++ b/meta-oe/recipes-graphics/gphoto2/gphoto2_2.5.28.bb | |||
@@ -19,6 +19,6 @@ EXTRA_OECONF += "--with-jpeg-prefix=${STAGING_INCDIR} \ | |||
19 | --without-cdk \ | 19 | --without-cdk \ |
20 | " | 20 | " |
21 | 21 | ||
22 | do_configure:append() { | 22 | do_compile:prepend() { |
23 | sed -i -E "s/--sysroot=[^'\" ]+//g" ${B}/config.h | 23 | sed -i -e 's/--sysroot=[^ "]*//g' ${B}/config.h |
24 | } | 24 | } |