diff options
author | Etienne Dechamps <[email protected]> | 2013-02-24 12:42:28 +0000 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2013-02-24 10:20:28 -0800 |
commit | d75af3c0ebb4e31ece087aeecfeff282cb6f1361 (patch) | |
tree | 6435d2801ea43ce7c4bed6b36d4d962deb3d2417 /config/kernel-bio-end-io-t-args.m4 | |
parent | 546c978bbd3f132a88609cab15ec0e954eaa62b8 (diff) |
Use -Werror for all kernel configure tests.
As a matter of fact, we're already using -Werror for most tests because
of a bug in kernel-bio-empty-barrier.m4 which sets -Werror without
reverting it afterwards. This meant that all tests which ran after this
one was using -Werror.
This patch simply makes it clear that we're using -Werror and makes
the code more readable and more predictable.
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #1317
Diffstat (limited to 'config/kernel-bio-end-io-t-args.m4')
-rw-r--r-- | config/kernel-bio-end-io-t-args.m4 | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/config/kernel-bio-end-io-t-args.m4 b/config/kernel-bio-end-io-t-args.m4 index ced486193..44e4826bf 100644 --- a/config/kernel-bio-end-io-t-args.m4 +++ b/config/kernel-bio-end-io-t-args.m4 @@ -9,8 +9,6 @@ dnl # to void. dnl # AC_DEFUN([ZFS_AC_KERNEL_BIO_END_IO_T_ARGS], [ AC_MSG_CHECKING([whether bio_end_io_t wants 2 args]) - tmp_flags="$EXTRA_KCFLAGS" - EXTRA_KCFLAGS="-Werror" ZFS_LINUX_TRY_COMPILE([ #include <linux/bio.h> ],[ @@ -25,5 +23,4 @@ AC_DEFUN([ZFS_AC_KERNEL_BIO_END_IO_T_ARGS], [ ],[ AC_MSG_RESULT(no) ]) - EXTRA_KCFLAGS="$tmp_flags" ]) |