From: Khem Raj Date: Thu, 8 Sep 2022 21:09:20 +0000 (-0700) Subject: gobject-introspection: Do not hardcode objdump name X-Git-Tag: 2022-10~142 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c04b3e0e371859c159b76bff87a5b1299b51d0c8;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git gobject-introspection: Do not hardcode objdump name Use OBJDUMP variable in the script, this helps in using the lddwrapper with recipes which maybe using different objdump tools e.g.l llvm-objdump or vice-versa Signed-off-by: Khem Raj Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.72.0.bb b/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.72.0.bb index 9a47e908b7e..d935cbd9050 100644 --- a/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.72.0.bb +++ b/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.72.0.bb @@ -103,7 +103,7 @@ EOF # for a different architecture cat > ${B}/g-ir-scanner-lddwrapper << EOF #!/bin/sh -$OBJDUMP -p "\$@" +\$OBJDUMP -p "\$@" EOF chmod +x ${B}/g-ir-scanner-lddwrapper