From: Marcos Mello Date: Fri, 22 Jun 2018 10:49:40 +0000 (+0000) Subject: Fix --with-netfilter-conntrack error message (#225) X-Git-Tag: SQUID_4_1~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dffa12d8c2ee576f8230e5b41bc262df51f77872;p=thirdparty%2Fsquid.git Fix --with-netfilter-conntrack error message (#225) Typo: The nonexistent directory error should say --with, not --without. --- diff --git a/configure.ac b/configure.ac index 3aa9488ee0..794ec5fd45 100644 --- a/configure.ac +++ b/configure.ac @@ -2333,7 +2333,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"