From bafe65898f1efc7fb35d26c3b78fc01eaa96c632 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20K=C3=BChling?= Date: Sat, 27 Oct 2012 05:22:21 +0200 Subject: [PATCH] qemu-host: workaround for compile problem with latest openwrt --- qemu-host/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/qemu-host/Makefile b/qemu-host/Makefile index ab45e12..4d43a00 100644 --- a/qemu-host/Makefile +++ b/qemu-host/Makefile @@ -47,10 +47,13 @@ endef HOST_CONFIGURE_VARS = +# Cannot currently pass HOST_CFLAGS as these mess with include file ordering, +# causing qemu compile to fail +# --extra-cflags="$(HOST_CFLAGS) $(HOST_CPPFLAGS)" + HOST_CONFIGURE_ARGS = \ --cc=$(HOSTCC) \ --prefix=$(STAGING_DIR_HOST) \ - --extra-cflags="$(HOST_CFLAGS) $(HOST_CPPFLAGS)" \ --extra-ldflags="$(HOST_LDFLAGS)" \ --sysconfdir=$(STAGING_DIR_HOST)/etc \ --disable-sdl \