From: jbasney Date: Tue, 24 Feb 2004 19:28:01 +0000 (+0000) Subject: bugfix: == isn't valid /bin/sh syntax; use = instead X-Git-Tag: OPENSSH_3_7_1P2_GSSAPI_20040224 X-Git-Url: http://andersk.mit.edu/gitweb/gssapi-openssh.git/commitdiff_plain/9e6effad960f8ddc03328a766e78e3fa86caffa1 bugfix: == isn't valid /bin/sh syntax; use = instead --- diff --git a/openssh/configure.ac b/openssh/configure.ac index 922a57b..f925b5f 100644 --- a/openssh/configure.ac +++ b/openssh/configure.ac @@ -689,7 +689,7 @@ AC_ARG_WITH(globus-static, [ --with-globus-static Link statically with Globus GSI libraries], [ gsi_static="-static" - if test "x$gsi_path" == "xno" ; then + if test "x$gsi_path" = "xno" ; then gsi_path="$withval" fi ] @@ -701,7 +701,7 @@ AC_ARG_WITH(globus-flavor, [ --with-globus-flavor=TYPE Specify Globus flavor type (ex: gcc32dbg)], [ globus_flavor_type="$withval" - if test "x$gsi_path" == "xno" ; then + if test "x$gsi_path" = "xno" ; then gsi_path="yes" fi ]