diff options
author | Benny Siegert <bsiegert@gmail.com> | 2015-09-26 22:34:15 +0200 |
---|---|---|
committer | Benny Siegert <bsiegert@gmail.com> | 2015-09-26 22:34:15 +0200 |
commit | 7f0335fc81f3920e0da62596682133a6b456fa14 (patch) | |
tree | 0f84b1e9152cce42981e7f48af5f77c44999537c | |
parent | 5a8d63de11de78854d83a4218c79cb203e6b5ea0 (diff) | |
download | libpam-radius-auth-7f0335fc81f3920e0da62596682133a6b456fa14.tar.gz libpam-radius-auth-7f0335fc81f3920e0da62596682133a6b456fa14.zip |
Fix invocation of test.
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -5267,7 +5267,7 @@ fi HOSTINFO=$host -if test "x$werror" == "xyes"; then +if test "x$werror" = "xyes"; then CFLAGS="-Werror $CFLAGS" fi diff --git a/configure.ac b/configure.ac index e9e2092..604c868 100644 --- a/configure.ac +++ b/configure.ac @@ -363,7 +363,7 @@ dnl # Add -Werror last, so it doesn't interfere with autoconf's dnl # test programs. dnl # dnl ############################################################# -if test "x$werror" == "xyes"; then +if test "x$werror" = "xyes"; then CFLAGS="-Werror $CFLAGS" fi AC_SUBST(LIBS) |