diff options
author | Roman I Khimov <khimov@altell.ru> | 2010-03-15 23:55:00 +0300 |
---|---|---|
committer | Jesse Gilles <jgilles@multitech.com> | 2010-04-26 11:36:24 -0500 |
commit | f0dd14849737e57518c883320651916afbae1e32 (patch) | |
tree | 32e2db8fd161bcd67869f6945e165b5a34c2288f /recipes | |
parent | 986f08bbb72b05da0c250b0f4dba417beff80dbd (diff) |
qemu: fix build with zlib-dev missing on host
OE provides its own zlib-native and qemu-native should use that.
Thanks to Thomas Zimmermann <ml@vdm-design.de> for spotting it.
Signed-off-by: Roman I Khimov <khimov@altell.ru>
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/qemu/qemu_0.12.3.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/recipes/qemu/qemu_0.12.3.bb b/recipes/qemu/qemu_0.12.3.bb index 035b1a5b3a..d1971e96f8 100644 --- a/recipes/qemu/qemu_0.12.3.bb +++ b/recipes/qemu/qemu_0.12.3.bb @@ -1,7 +1,7 @@ LICENSE = "GPL" DEPENDS = "zlib" -PR = "r0" +PR = "r1" SRC_URI = "\ http://download.savannah.gnu.org/releases/qemu/qemu-${PV}.tar.gz;name=qemu-${PV} \ @@ -31,6 +31,10 @@ EXTRA_OECONF += "--disable-sdl --disable-strip" inherit autotools +do_configure_prepend_virtclass-native() { + export QEMU_CFLAGS="-I${STAGING_INCDIR_NATIVE} ${QEMU_CFLAGS}" +} + do_configure() { ${S}/configure --prefix=${prefix} ${EXTRA_OECONF} } |