build-sys: Remove -Werror from CFLAGS
authorLucas De Marchi <lucas.demarchi@intel.com>
Mon, 24 Mar 2014 10:58:32 +0000 (07:58 -0300)
committerLucas De Marchi <lucas.demarchi@intel.com>
Mon, 24 Mar 2014 17:54:01 +0000 (14:54 -0300)
Just let the warnings be emmited, but don't fail on them.

bootstrap
bootstrap-configure

index 5163aa0..b26ff8c 100755 (executable)
--- 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
index 857745e..33fbc2c 100755 (executable)
@@ -1,4 +1,4 @@
 #!/bin/sh
 
 . ./bootstrap && \
-       exec ./configure CFLAGS="-g -O2 -Werror" $args $hackargs "$@"
+       exec ./configure CFLAGS="-g -O2" $args $hackargs "$@"