summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2019-10-14 15:08:59 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-11-13 22:02:16 +0000
commit90769125ee55baebbe228fcf50428222ac08ded2 (patch)
tree317020bede58d4af9c2c272fba9ac2fab85dce75 /meta/recipes-devtools
parentc1fbd56f01f26323a3ccd27625d774bcbffd0a73 (diff)
downloadpoky-90769125ee55baebbe228fcf50428222ac08ded2.tar.gz
qemu-helper-native: pass compiler flags
Pass all of the compiler and linker flags so the build is correctly configured. (From OE-Core rev: b5f8274d75cb61beaf7dab3420bda206e45697ae) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r--meta/recipes-devtools/qemu/qemu-helper-native_1.0.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/qemu/qemu-helper-native_1.0.bb b/meta/recipes-devtools/qemu/qemu-helper-native_1.0.bb
index d9d9da0fad..372eebd886 100644
--- a/meta/recipes-devtools/qemu/qemu-helper-native_1.0.bb
+++ b/meta/recipes-devtools/qemu/qemu-helper-native_1.0.bb
@@ -12,7 +12,7 @@ S = "${WORKDIR}"
12inherit native 12inherit native
13 13
14do_compile() { 14do_compile() {
15 ${CC} tunctl.c -o tunctl 15 ${CC} ${CFLAGS} ${LDFLAGS} -Wall tunctl.c -o tunctl
16} 16}
17 17
18do_install() { 18do_install() {