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) Reported-by: Florian Westphal <fw@xxxxxxxxx> Signed-off-by: Shivani Bhardwaj <shivanib134@xxxxxxxxx> --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index c91e9e7..b47516b 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"; -- 2.7.4 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html