]> 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, 1 Jul 2018 08:37:26 +0000 (20:37 +1200)
Typo: The nonexistent directory error should say --with, not --without.

configure.ac

index 3aa9488ee02dd5c5a8d3104cb695eeb573cad29a..794ec5fd45ea6a46c20e161c62b35aeae3276a22 100644 (file)
@@ -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"