gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 01/219: configure: avoid unportable `==' test(1) op


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 01/219: configure: avoid unportable `==' test(1) operator
Date: Wed, 22 May 2019 19:15:40 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit 8759e335abdf863acef9c67dd9213225251db6fc
Author: Leonardo Taccari <address@hidden>
AuthorDate: Wed Mar 27 13:56:59 2019 +0100

    configure: avoid unportable `==' test(1) operator
    
    Closes #3709
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]