From: Hieu Van Nguyen <[email protected]> After fixing the TMPDIR [buildpaths] warning, a segmentation fault while running gphoto2 command.
It seems 'sed' is primarily designed for text processing. When running 'sed' on a binary, it may overwrite or corrupt critical parts of the binary. > root@qemux86-64:~# gphoto2 -v > Segmentation fault Signed-off-by: Hieu Van Nguyen <[email protected]> --- meta-oe/recipes-graphics/gphoto2/gphoto2_2.5.28.bb | 6 ++---- 1 file changed, 2 insertions(+), 4 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 aba590aa02..1dc2a1fc34 100644 --- a/meta-oe/recipes-graphics/gphoto2/gphoto2_2.5.28.bb +++ b/meta-oe/recipes-graphics/gphoto2/gphoto2_2.5.28.bb @@ -19,8 +19,6 @@ EXTRA_OECONF += "--with-jpeg-prefix=${STAGING_INCDIR} \ --without-cdk \ " -INSANE_SKIP:${PN} = "already-stripped" - -do_install:append() { - sed -i -e 's#${RECIPE_SYSROOT}##g' ${D}${bindir}/gphoto2 +do_configure:append() { + sed -i -e 's#${RECIPE_SYSROOT}##g' ${B}/config.h } -- 2.34.1
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#114905): https://lists.openembedded.org/g/openembedded-devel/message/114905 Mute This Topic: https://lists.openembedded.org/mt/110641175/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
