From 6490f0bb953a9a1290fe24453073a452a552e1f5 Mon Sep 17 00:00:00 2001 From: Shivani Bhardwaj Date: Thu, 23 Jun 2016 01:11:39 +0530 Subject: 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 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') 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"; -- cgit v1.2.3