From df27c113a333bbe1dfeffe5d4b83d13a552bc85a Mon Sep 17 00:00:00 2001 From: Christian Hofstaedtler Date: Mon, 11 Jul 2016 19:20:09 +0200 Subject: [PATCH] Use single equal sign when calling test(1) Fixes #4102. --- configure.ac | 4 ++-- m4/pdns_enable_remotebackend_zeromq.m4 | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 9f7039e9ef..7cc72107f5 100644 --- a/configure.ac +++ b/configure.ac @@ -349,7 +349,7 @@ AC_MSG_NOTICE([----------------]) AC_MSG_NOTICE([Built-in modules: $modules]) AC_MSG_NOTICE([Dynamic modules: $dynmodules]) AC_MSG_NOTICE([]) -AS_IF([test "x$openssl_ecdsa" == "xyes"], +AS_IF([test "x$openssl_ecdsa" = "xyes"], [AC_MSG_NOTICE([OpenSSL ecdsa: yes])], [AC_MSG_NOTICE([OpenSSL ecdsa: no])] ) @@ -363,7 +363,7 @@ AS_IF([test "x$LUAPC" != "x"], [AC_MSG_NOTICE([LuaJit: $LUAJITPC])], [AC_MSG_NOTICE([Lua/LuaJit: no])]) ]) -AS_IF([test "x$enable_experimental_gss_tsig" == "xyes"], +AS_IF([test "x$enable_experimental_gss_tsig" = "xyes"], [AC_MSG_NOTICE([GSS-TSIG: yes])] ) AS_IF([test "x$systemd" != "xn"], diff --git a/m4/pdns_enable_remotebackend_zeromq.m4 b/m4/pdns_enable_remotebackend_zeromq.m4 index ef9f19c59d..b20d1b2680 100644 --- a/m4/pdns_enable_remotebackend_zeromq.m4 +++ b/m4/pdns_enable_remotebackend_zeromq.m4 @@ -15,7 +15,7 @@ AC_DEFUN([PDNS_ENABLE_REMOTEBACKEND_ZEROMQ],[ AS_IF([test "x$enable_remotebackend_zeromq" != "xno"], [ - AS_IF([test "x$have_remotebackend" == "xyes"], + AS_IF([test "x$have_remotebackend" = "xyes"], [ PKG_CHECK_MODULES([LIBZMQ], [libzmq], [ -- 2.47.2