From 6d59d9d086e4ca54aeea0fff4494c344d949e6c8 Mon Sep 17 00:00:00 2001 From: Lucas De Marchi Date: Mon, 24 Mar 2014 07:58:32 -0300 Subject: [PATCH] build-sys: Remove -Werror from CFLAGS Just let the warnings be emmited, but don't fail on them. --- bootstrap | 2 +- bootstrap-configure | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap b/bootstrap index 5163aa0..b26ff8c 100755 --- a/bootstrap +++ b/bootstrap @@ -24,6 +24,6 @@ Initialized build system. For a common configuration please run: If you are debugging or hacking on kmod, consider configuring like below: -./configure CFLAGS="-g -O2 -Werror" $args $hackargs +./configure CFLAGS="-g -O2" $args $hackargs EOC diff --git a/bootstrap-configure b/bootstrap-configure index 857745e..33fbc2c 100755 --- a/bootstrap-configure +++ b/bootstrap-configure @@ -1,4 +1,4 @@ #!/bin/sh . ./bootstrap && \ - exec ./configure CFLAGS="-g -O2 -Werror" $args $hackargs "$@" + exec ./configure CFLAGS="-g -O2" $args $hackargs "$@" -- 2.7.4