From 6a3bff298e0026fbbbea46aea1a859a30691a560 Mon Sep 17 00:00:00 2001 From: Simon Dawson Date: Mon, 11 Nov 2013 15:43:47 +0000 Subject: [PATCH] libqmi: fix autobuild failures The libqmi build specifies -Werror in the CFLAGS by default. This causes build failures such as the following. http://autobuild.buildroot.net/results/070/070449299aa9025c4bc6769524a6e22d66c92a65/ The -Werror flag can be disabled using a configuration switch. [Peter: use =no instead and add a comment explaining why] Signed-off-by: Simon Dawson Signed-off-by: Peter Korsgaard --- package/libqmi/libqmi.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package/libqmi/libqmi.mk b/package/libqmi/libqmi.mk index 911b1a7957..4f3f9a9deb 100644 --- a/package/libqmi/libqmi.mk +++ b/package/libqmi/libqmi.mk @@ -13,4 +13,7 @@ LIBQMI_INSTALL_STAGING = YES LIBQMI_DEPENDENCIES = libglib2 +# we don't want -Werror +LIBQMI_CONF_OPT = --enable-more-warnings=no + $(eval $(autotools-package)) -- 2.30.2