]> git.ipfire.org Git - thirdparty/kmod.git/commitdiff
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 5163aa05a40ceced8dd5aa2ab209aede19b176ad..b26ff8ca0343871356aee5feb3bdb8e8e6d53c07 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 857745e0b6c3ef11cd66de2ca9dc55eff9a82670..33fbc2c4a336320adce9cfae296a7c2855388686 100755 (executable)
@@ -1,4 +1,4 @@
 #!/bin/sh
 
 . ./bootstrap && \
-       exec ./configure CFLAGS="-g -O2 -Werror" $args $hackargs "$@"
+       exec ./configure CFLAGS="-g -O2" $args $hackargs "$@"