]> git.ipfire.org Git - thirdparty/iptables.git/commitdiff
configure: Fix assignment statement
authorShivani Bhardwaj <shivanib134@gmail.com>
Wed, 22 Jun 2016 19:41:39 +0000 (01:11 +0530)
committerFlorian Westphal <fw@strlen.de>
Thu, 23 Jun 2016 06:22:43 +0000 (08:22 +0200)
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 <shivanib134@gmail.com>
Signed-off-by: Florian Westphal <fw@strlen.de>
configure.ac

index c91e9e7199dd1e9d8ca2bb8398388f999d414d6f..b47516bfb343b7097691d4e5aa55891051881654 100644 (file)
@@ -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";