From fc209a6a629ae076de93cac8b2358256b30dccb4 Mon Sep 17 00:00:00 2001 From: Marcos Mello Date: Fri, 22 Jun 2018 10:49:40 +0000 Subject: [PATCH] Fix --with-netfilter-conntrack error message (#225) Typo: The nonexistent directory error should say --with, not --without. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 3da4f30de1..37a52ef8a4 100644 --- a/configure.ac +++ b/configure.ac @@ -2310,7 +2310,7 @@ case "$with_netfilter_conntrack" in ;; *) if test ! -d "$withval" ; then - AC_MSG_ERROR([--without-netfilter-conntrack path does not point to a directory]) + AC_MSG_ERROR([--with-netfilter-conntrack path does not point to a directory]) fi squid_opt_netfilterconntrackpath=$withval LDFLAGS="-L$squid_opt_netfilterconntrackpath/lib $LDFLAGS" -- 2.47.3