From 9e6effad960f8ddc03328a766e78e3fa86caffa1 Mon Sep 17 00:00:00 2001 From: jbasney Date: Tue, 24 Feb 2004 19:28:01 +0000 Subject: [PATCH] bugfix: == isn't valid /bin/sh syntax; use = instead --- openssh/configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ] -- 2.45.2