From: Shivani Bhardwaj Date: Wed, 22 Jun 2016 19:41:39 +0000 (+0530) Subject: configure: Fix assignment statement X-Git-Tag: v1.6.1~63 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6490f0bb953a9a1290fe24453073a452a552e1f5;p=thirdparty%2Fiptables.git configure: Fix assignment statement The assignment statement was interpreted as executing enable_connlabel command with the argument "no". This was due to the whitespaces in the assignment. Fixes the trivial bug introduced in commit 3b7a227 (configure: Show support for connlabel) Signed-off-by: Shivani Bhardwaj Signed-off-by: Florian Westphal --- diff --git a/configure.ac b/configure.ac index c91e9e71..b47516bf 100644 --- a/configure.ac +++ b/configure.ac @@ -175,7 +175,7 @@ if test "x$enable_connlabel" = "xyes"; then if test "$nfconntrack" -ne 1; then blacklist_modules="$blacklist_modules connlabel"; echo "WARNING: libnetfilter_conntrack not found, connlabel match will not be built"; - enable_connlabel = "no"; + enable_connlabel="no"; fi; else blacklist_modules="$blacklist_modules connlabel";