diff options
author | Kai Kang <kai.kang@windriver.com> | 2019-06-13 21:38:10 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-06-14 22:48:22 +0100 |
commit | 1fa9343f7c29df6aada272d055b15f616297deea (patch) | |
tree | 7bcbefb152b9800a265b4cee2f6a6c44b3eac945 /meta/recipes-devtools/qemu | |
parent | f1fdce83ccce6cf8779421893d9026e6db9ebd30 (diff) | |
download | poky-1fa9343f7c29df6aada272d055b15f616297deea.tar.gz |
qemu/qemu-system-native: depend bison-native
Add bison-native to DEPENDS of qemu and qemu-system-native to fix
compile warning:
| BISON dtc-parser.tab.c
| make[1]: bison: Command not found
(From OE-Core rev: ef2592eb898b494cf61f1e0614bdcaf94ec103d0)
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/qemu')
-rw-r--r-- | meta/recipes-devtools/qemu/qemu-system-native_4.0.0.bb | 2 | ||||
-rw-r--r-- | meta/recipes-devtools/qemu/qemu_4.0.0.bb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/qemu/qemu-system-native_4.0.0.bb b/meta/recipes-devtools/qemu/qemu-system-native_4.0.0.bb index 820883df65..964dcee524 100644 --- a/meta/recipes-devtools/qemu/qemu-system-native_4.0.0.bb +++ b/meta/recipes-devtools/qemu/qemu-system-native_4.0.0.bb | |||
@@ -5,7 +5,7 @@ require qemu-native.inc | |||
5 | # As some of the files installed by qemu-native and qemu-system-native | 5 | # As some of the files installed by qemu-native and qemu-system-native |
6 | # are the same, we depend on qemu-native to get the full installation set | 6 | # are the same, we depend on qemu-native to get the full installation set |
7 | # and avoid file clashes | 7 | # and avoid file clashes |
8 | DEPENDS = "glib-2.0-native zlib-native pixman-native qemu-native" | 8 | DEPENDS = "glib-2.0-native zlib-native pixman-native qemu-native bison-native" |
9 | 9 | ||
10 | EXTRA_OECONF_append = " --target-list=${@get_qemu_system_target_list(d)}" | 10 | EXTRA_OECONF_append = " --target-list=${@get_qemu_system_target_list(d)}" |
11 | 11 | ||
diff --git a/meta/recipes-devtools/qemu/qemu_4.0.0.bb b/meta/recipes-devtools/qemu/qemu_4.0.0.bb index 247e0311ed..f119215b21 100644 --- a/meta/recipes-devtools/qemu/qemu_4.0.0.bb +++ b/meta/recipes-devtools/qemu/qemu_4.0.0.bb | |||
@@ -2,7 +2,7 @@ BBCLASSEXTEND = "nativesdk" | |||
2 | 2 | ||
3 | require qemu.inc | 3 | require qemu.inc |
4 | 4 | ||
5 | DEPENDS = "glib-2.0 zlib pixman" | 5 | DEPENDS = "glib-2.0 zlib pixman bison-native" |
6 | 6 | ||
7 | RDEPENDS_${PN}_class-target += "bash" | 7 | RDEPENDS_${PN}_class-target += "bash" |
8 | 8 | ||