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 08:00:33 -0300
commit749263253286b175db765953999c513966b40094 (patch)
treee407ae9d4a27e81a8c657abc1c523731c7ea8a28
parent092d9448e0d46df135db0f6a6c48719e030e6477 (diff)
downloadkmod-749263253286b175db765953999c513966b40094.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 "$@"