]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix --with-netfilter-conntrack error message (#225)
authorMarcos Mello <marcosfrm@users.noreply.github.com>
Fri, 22 Jun 2018 10:49:40 +0000 (10:49 +0000)
committerAmos Jeffries <yadij@users.noreply.github.com>
Sun, 8 Jul 2018 14:04:24 +0000 (02:04 +1200)
Typo: The nonexistent directory error should say --with, not --without.

configure.ac

index 041b84d9843e22d7b37b586d31920fe8e9e2efd1..97681b85712cc1896bd145d5629d2df62f99dfd6 100644 (file)
@@ -2319,7 +2319,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"