From: Alex Baldwin Date: Sun, 25 Feb 2018 14:40:33 +0000 (+0100) Subject: liblo: disable werror to fix build issues X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2759ba039790cd15892bafbd140b34c1b63e299e;p=buildroot.git liblo: disable werror to fix build issues Pass the --disable-werror option to remove -Werror, and therefore avoid a number of build failures. Fixes: http://autobuild.buildroot.net/results/61ab7e23d2ef62f055efc74a998e3c108a3cdb43 Signed-off-by: Alex Baldwin Signed-off-by: Thomas Petazzoni --- diff --git a/package/liblo/liblo.mk b/package/liblo/liblo.mk index 14b0527966..c7d163dae2 100644 --- a/package/liblo/liblo.mk +++ b/package/liblo/liblo.mk @@ -12,6 +12,9 @@ LIBLO_LICENSE_FILES = COPYING LIBLO_INSTALL_STAGING = YES # IPv6 support broken, issue known upstream -LIBLO_CONF_OPTS = --disable-ipv6 +# werror - not needed for release. +LIBLO_CONF_OPTS += \ + --disable-ipv6 \ + --disable-werror $(eval $(autotools-package))