commit c737a34c0f9fd5011048331ed5851b0524dec740
parent ae68c8145575866c1ffb4c859f48e44054d1d59f
Author: Christian Grothoff <christian@grothoff.org>
Date: Wed, 21 Nov 2018 00:32:00 +0100
fix impropper negation
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
@@ -206,7 +206,7 @@ rm -f /tmp/gnunet_test_cosks_ssh_garbage
# iptables is a soft requirement to run tests
AC_PATH_TARGET_TOOL(VAR_IPTABLES_BINARY, iptables, false)
-if test x"$VAR_IPTABLES_BINARY" != x"false"
+if test x"$VAR_IPTABLES_BINARY" = x"false"
then
if test -x "/sbin/iptables"
then
@@ -227,7 +227,7 @@ fi
AC_PATH_TARGET_TOOL(VAR_IFCONFIG_BINARY, ifconfig, false)
AC_CHECK_PROG(VAR_IFCONFIG_BINARY, ifconfig, true, false)
-if test x"$VAR_IFCONFIG_BINARY" != x"false"
+if test x"$VAR_IFCONFIG_BINARY" = x"false"
then
if test -x "/sbin/ifconfig"
then