summaryrefslogtreecommitdiffstats
path: root/meta/packages/qemu/qemu.inc
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2010-06-15 12:22:01 +0100
committerJoshua Lock <josh@linux.intel.com>2010-06-15 12:33:11 +0100
commitc87bf0cfc656b4ae32b5e6ea926a71135b609a2e (patch)
tree8e561e344145ee4188487c8a53d7582b28dfb018 /meta/packages/qemu/qemu.inc
parent5101076eab596d966e5a8a5ef749a48c5334a17e (diff)
downloadpoky-c87bf0cfc656b4ae32b5e6ea926a71135b609a2e.tar.gz
qemu: Fix linking of the native package on Fedora 13
Fedora 13 switched the default behaviour of the linker to no longer indirectly link to required libraries (i.e. dependencies of a library already linked to). Therefore we need to explicitly pass the depended on libraries into the linker for building to work on Fedora 13. Signed-off-by: Joshua Lock <josh@linux.intel.com>
Diffstat (limited to 'meta/packages/qemu/qemu.inc')
-rw-r--r--meta/packages/qemu/qemu.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/packages/qemu/qemu.inc b/meta/packages/qemu/qemu.inc
index 0a0de2cc4c..c744990d0f 100644
--- a/meta/packages/qemu/qemu.inc
+++ b/meta/packages/qemu/qemu.inc
@@ -3,7 +3,7 @@ HOMEPAGE = "http://qemu.org"
3LICENSE = "GPL" 3LICENSE = "GPL"
4DEPENDS = "zlib" 4DEPENDS = "zlib"
5 5
6EXTRA_OECONF = "--target-list=arm-linux-user,arm-softmmu,i386-softmmu,x86_64-softmmu,mips-linux-user,mips-softmmu --disable-werror --disable-vnc-tls --extra-ldflags=-ldl" 6EXTRA_OECONF = "--target-list=arm-linux-user,arm-softmmu,i386-softmmu,x86_64-softmmu,mips-linux-user,mips-softmmu --disable-werror --disable-vnc-tls"
7#EXTRA_OECONF += "--disable-sdl" 7#EXTRA_OECONF += "--disable-sdl"
8 8
9inherit autotools 9inherit autotools