From: Amos Jeffries Date: Thu, 23 Apr 2009 08:08:14 +0000 (+1200) Subject: Author: Unknown - NetBSD Project X-Git-Tag: SQUID_3_2_0_1~1053 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=34c5282c690ac84d307046fa90afce70b8f634c1;p=thirdparty%2Fsquid.git Author: Unknown - NetBSD Project Fix bashism in squid_kerb_auth helper configuration file Found by NetBSD project pkgsrc tool. Author of that tool is Roland Illig (rillig@netbsd.org). --- diff --git a/helpers/negotiate_auth/squid_kerb_auth/configure.in b/helpers/negotiate_auth/squid_kerb_auth/configure.in index 0b0930858e..c92cc120ed 100644 --- a/helpers/negotiate_auth/squid_kerb_auth/configure.in +++ b/helpers/negotiate_auth/squid_kerb_auth/configure.in @@ -286,21 +286,21 @@ if test "$enable_arg" = "no"; then AC_CHECK_PROG(ac_krb5_config,krb5-config,yes,no) case $sys in Linux) rpm -q heimdal-lib >/dev/null 2>&1 - if test $? == 0 ; then + if test $? = 0 ; then check_heimdal else check_mit fi ;; AIX) lslpp -L krb5.client.rte >/dev/null 2>&1 - if test $? == 0 ; then + if test $? = 0 ; then check_nas else check_mit fi ;; SunOS) pkginfo SUNWgss >/dev/null 2>&1 - if test $? == 0 ; then + if test $? = 0 ; then check_seam else check_mit