summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLucas De Marchi <lucas.demarchi@intel.com>2014-03-24 07:58:32 -0300
committerLucas De Marchi <lucas.demarchi@intel.com>2014-03-24 14:54:01 -0300
commit6d59d9d086e4ca54aeea0fff4494c344d949e6c8 (patch)
tree4d6d4c897cebfd03613e8a3599615403ca1ee7ae
parentaa72284f83cce506b100d387edd19264415d1429 (diff)
downloadkmod-6d59d9d086e4ca54aeea0fff4494c344d949e6c8.tar.gz
build-sys: Remove -Werror from CFLAGS
Just let the warnings be emmited, but don't fail on them.
-rwxr-xr-xbootstrap2
-rwxr-xr-xbootstrap-configure2
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 "$@"