diff options
author | Gilles Espinasse <g.esp@free.fr> | 2011-04-12 22:44:25 +0200 |
---|---|---|
committer | Søren Sandmann Pedersen <ssp@redhat.com> | 2011-04-13 15:06:07 -0400 |
commit | b5f512307822657778995b266736ed518152111f (patch) | |
tree | 6e9e2ee35b66f549a1b269eadbd75168ccc06dc3 | |
parent | caae4e82ffdeebfb9aa98a6c49dd563e065c0959 (diff) |
Fix missing AC_MSG_RESULT value from Werror test
Use the correct variable name
Signed-off-by: Gilles Espinasse <g.esp@free.fr>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index db9a883b..0b526d60 100644 --- a/configure.ac +++ b/configure.ac @@ -119,7 +119,7 @@ for w in -Werror -errwarn; do [CFLAGS=$w], [int main(int c, char **v) { (void)c; (void)v; return 0; }], [WERROR=$w; yesno=yes], [yesno=no]) - AC_MSG_RESULT($_yesno) + AC_MSG_RESULT($yesno) fi done |