[Buildroot] [git commit branch/next] liblo: disable werror to fix build issues

Thomas Petazzoni thomas.petazzoni at bootlin.com
Sun Feb 25 20:54:47 UTC 2018


commit: https://git.buildroot.net/buildroot/commit/?id=2759ba039790cd15892bafbd140b34c1b63e299e
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/next

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 <alexbaldwinmusic at gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni at bootlin.com>
---
 package/liblo/liblo.mk | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

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))


More information about the buildroot mailing list