]> granicus.if.org Git - curl/commitdiff
configure: avoid unportable `==' test(1) operator
authorLeonardo Taccari <iamleot@gmail.com>
Wed, 27 Mar 2019 12:56:59 +0000 (13:56 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 27 Mar 2019 22:25:46 +0000 (23:25 +0100)
Closes #3709

configure.ac

index 6d5ec2c0f5395d26c31f04821ea33a3b12b7276b..d8a4736e54150e872c17e4577734fa08c3181475 100755 (executable)
@@ -1569,7 +1569,7 @@ AC_HELP_STRING([--without-amissl], [disable Amiga native SSL/TLS (AmiSSL)]),
   OPT_AMISSL=$withval)
 
 AC_MSG_CHECKING([whether to enable Amiga native SSL/TLS (AmiSSL)])
-if test "$HAVE_PROTO_BSDSOCKET_H" == "1"; then
+if test "$HAVE_PROTO_BSDSOCKET_H" = "1"; then
   if test -z "$ssl_backends" -o "x$OPT_AMISSL" != xno; then
     ssl_msg=
     if test "x$OPT_AMISSL" != "xno"; then