aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-11-21 00:32:00 +0100
committerChristian Grothoff <christian@grothoff.org>2018-11-21 00:32:00 +0100
commitc737a34c0f9fd5011048331ed5851b0524dec740 (patch)
tree3e29effe610160a668cb1f6f1215e7662c58ce06
parentae68c8145575866c1ffb4c859f48e44054d1d59f (diff)
downloadgnunet-c737a34c0f9fd5011048331ed5851b0524dec740.tar.gz
gnunet-c737a34c0f9fd5011048331ed5851b0524dec740.zip
fix impropper negation
-rw-r--r--configure.ac4
1 files 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
206# iptables is a soft requirement to run tests 206# iptables is a soft requirement to run tests
207AC_PATH_TARGET_TOOL(VAR_IPTABLES_BINARY, iptables, false) 207AC_PATH_TARGET_TOOL(VAR_IPTABLES_BINARY, iptables, false)
208 208
209if test x"$VAR_IPTABLES_BINARY" != x"false" 209if test x"$VAR_IPTABLES_BINARY" = x"false"
210then 210then
211 if test -x "/sbin/iptables" 211 if test -x "/sbin/iptables"
212 then 212 then
@@ -227,7 +227,7 @@ fi
227AC_PATH_TARGET_TOOL(VAR_IFCONFIG_BINARY, ifconfig, false) 227AC_PATH_TARGET_TOOL(VAR_IFCONFIG_BINARY, ifconfig, false)
228 228
229AC_CHECK_PROG(VAR_IFCONFIG_BINARY, ifconfig, true, false) 229AC_CHECK_PROG(VAR_IFCONFIG_BINARY, ifconfig, true, false)
230if test x"$VAR_IFCONFIG_BINARY" != x"false" 230if test x"$VAR_IFCONFIG_BINARY" = x"false"
231then 231then
232 if test -x "/sbin/ifconfig" 232 if test -x "/sbin/ifconfig"
233 then 233 then