]> andersk Git - gssapi-openssh.git/commitdiff
bugfix: == isn't valid /bin/sh syntax; use = instead OPENSSH_3_7_1P2_GSSAPI_20040224
authorjbasney <jbasney>
Tue, 24 Feb 2004 19:28:01 +0000 (19:28 +0000)
committerjbasney <jbasney>
Tue, 24 Feb 2004 19:28:01 +0000 (19:28 +0000)
openssh/configure.ac

index 922a57b658a5125668e4c4b71966fcf9396f2a94..f925b5f5397e7f7d7396fc1669e0ee628309c643 100644 (file)
@@ -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
        ]
This page took 0.131004 seconds and 5 git commands to generate.