diff options
author | Leonardo Taccari <iamleot@gmail.com> | 2019-03-27 13:56:59 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-03-27 23:25:46 +0100 |
commit | 8759e335abdf863acef9c67dd9213225251db6fc (patch) | |
tree | 83e3bd18ced243522eb04dc8b2f70d2cb4a45b52 /configure.ac | |
parent | 521bbbe29928f9bc1c61306df612e856d45cbe5a (diff) | |
download | curl-8759e335abdf863acef9c67dd9213225251db6fc.tar.gz |
configure: avoid unportable `==' test(1) operator
Closes #3709
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 6d5ec2c0f..d8a4736e5 100755 --- a/configure.ac +++ b/configure.ac @@ -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 |