From: Amos Jeffries Date: Sat, 8 Nov 2008 03:57:49 +0000 (-0700) Subject: Fix configure syntax error in squid_kerb_ath X-Git-Tag: SQUID_3_2_0_1~1346 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f9150fbfcf307aff921a869c522b3dc6f579645b;p=thirdparty%2Fsquid.git Fix configure syntax error in squid_kerb_ath --- diff --git a/helpers/negotiate_auth/squid_kerb_auth/config.test b/helpers/negotiate_auth/squid_kerb_auth/config.test index fd70e416d3..3172eb0c35 100644 --- a/helpers/negotiate_auth/squid_kerb_auth/config.test +++ b/helpers/negotiate_auth/squid_kerb_auth/config.test @@ -1,6 +1,6 @@ #!/bin/sh # Don't build without gssapi.h -if [[ -f /usr/include/gssapi/gssapi.h || -f /usr/include/gssapi.h ]]; then +if test -f /usr/include/gssapi/gssapi.h || test -f /usr/include/gssapi.h ; then exit 1 fi exit 0