]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix --with-netfilter-conntrack error message (#225) M-staged-PR225
authorMarcos Mello <marcosfrm@users.noreply.github.com>
Fri, 22 Jun 2018 10:49:40 +0000 (10:49 +0000)
committerSquid Anubis <squid-anubis@squid-cache.org>
Sun, 24 Jun 2018 11:11:52 +0000 (11:11 +0000)
Typo: The nonexistent directory error should say --with, not --without.

configure.ac

index 3da4f30de18acd4ff637cd52b548bbecdfcd9b19..37a52ef8a47156a44033e8a56d59aaaa809720ce 100644 (file)
@@ -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"