From c737a34c0f9fd5011048331ed5851b0524dec740 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Wed, 21 Nov 2018 00:32:00 +0100 Subject: fix impropper negation --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 82329ef45..69a7d0c24 100644 --- 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 -- cgit v1.2.3