summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2024-06-11 15:01:59 +0100
committerSteve Sakoman <steve@sakoman.com>2024-06-26 05:04:39 -0700
commitaf50c9154cd6cd9b94a98ed8231aab598bbb97d4 (patch)
tree5a215bdd694c3c7b81791dda54fe20e74bc8d2f9
parent940a24ab8b7ac626209a7efb2d476aa0b201a84f (diff)
downloadpoky-af50c9154cd6cd9b94a98ed8231aab598bbb97d4.tar.gz
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 (From OE-Core rev: bbbb515f7df240b8679567cd3e04d6b4ccc65f6d) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit c04b3e0e371859c159b76bff87a5b1299b51d0c8) Signed-off-by: Daiane Angolini <daiane.angolini@foundries.io> Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io> Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r--meta/recipes-gnome/gobject-introspection/gobject-introspection_1.72.0.bb2
1 files changed, 1 insertions, 1 deletions
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 9a47e908b7..d935cbd905 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
103 # for a different architecture 103 # for a different architecture
104 cat > ${B}/g-ir-scanner-lddwrapper << EOF 104 cat > ${B}/g-ir-scanner-lddwrapper << EOF
105#!/bin/sh 105#!/bin/sh
106$OBJDUMP -p "\$@" 106\$OBJDUMP -p "\$@"
107EOF 107EOF
108 chmod +x ${B}/g-ir-scanner-lddwrapper 108 chmod +x ${B}/g-ir-scanner-lddwrapper
109 109