From: Lucas De Marchi Date: Mon, 24 Mar 2014 10:58:32 +0000 (-0300) Subject: build-sys: Remove -Werror from CFLAGS X-Git-Tag: v17~13 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6d59d9d086e4ca54aeea0fff4494c344d949e6c8;p=platform%2Fupstream%2Fkmod.git build-sys: Remove -Werror from CFLAGS Just let the warnings be emmited, but don't fail on them. --- 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 "$@"