From 7dd18e613f8c6d2e5b0451207a1dfb493beb2d39 Mon Sep 17 00:00:00 2001 From: Zhenhua Luo Date: Thu, 2 Jun 2016 21:38:16 +0800 Subject: qemu-fsl: remove unsupported configure options Fix the following errors: | DEBUG: Executing shell function do_configure | ERROR: unknown option --disable-static | ERROR: unknown option --disable-gnutls | ERROR: unknown option --disable-gcrypt | ERROR: unknown option --disable-nettle | ERROR: unknown option --disable-smartcard Signed-off-by: Zhenhua Luo Signed-off-by: Otavio Salvador --- recipes-devtools/qemu/qemu-fsl_git.bb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/recipes-devtools/qemu/qemu-fsl_git.bb b/recipes-devtools/qemu/qemu-fsl_git.bb index 94fb9b1..28e06f9 100644 --- a/recipes-devtools/qemu/qemu-fsl_git.bb +++ b/recipes-devtools/qemu/qemu-fsl_git.bb @@ -12,12 +12,19 @@ PV = "2.2.0+${SRCPV}" # to qemu 2.3: PACKAGECONFIG[glx] = "--enable-glx,--disable-glx,mesa" +# remove not supported PACKAGECONFIG by this v2.2.0 based recipe +PACKAGECONFIG[gcrypt] = "" +PACKAGECONFIG[gnutls] = "" +PACKAGECONFIG[nettle] = "" +PACKAGECONFIG[nss] = "" + SRC_URI = "git://git.freescale.com/ppc/sdk/qemu.git;branch=master" SRCREV = "00ac004143e9fe46944a1885b04268fcd3a95a3a" S = "${WORKDIR}/git" QEMU_TARGETS = "arm" +DISABLE_STATIC = "" inherit pkgconfig -- cgit v1.2.3-54-g00ecf