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 <[email protected]> --- 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 -- 2.4.11 -- _______________________________________________ meta-freescale mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-freescale
