[seahorse] Bug 583281 – Unportable test(1) construct in configure script



commit 6eda8ecc06e4e114e5ebe8b8817e57363aad5287
Author: Thomas Klausner <wiz danbala tuwien ac at>
Date:   Thu May 21 12:53:08 2009 -0400

    Bug 583281 â?? Unportable test(1) construct in configure script
    
    Change == tests to = tests
---
 configure.in |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/configure.in b/configure.in
index 25ff434..9268753 100644
--- a/configure.in
+++ b/configure.in
@@ -189,7 +189,7 @@ if test "$enable_pgp" = "yes"; then
         AC_DEFINE(WITH_PGP, 1, [With PGP Support])
 fi
 
-AM_CONDITIONAL(WITH_PGP, test "$enable_pgp" == "yes")
+AM_CONDITIONAL(WITH_PGP, test "$enable_pgp" = "yes")
 
 dnl ******************************************************************************
 dnl LDAP [from gpg]
@@ -440,14 +440,14 @@ if test "$enable_pkcs11" = "no"; then
 	enable_pkcs11="no"
 else
 	PKG_CHECK_MODULES(GP11, gp11-0 >= 2.25.5 gcr-0 >= 2.25.5, enable_pkcs11="yes", enable_pkcs11="no")
-	if test "$enable_pkcs11" == "yes"; then
+	if test "$enable_pkcs11" = "yes"; then
 		AC_DEFINE(WITH_PKCS11, 1, [gp11 library available])
 		SEAHORSE_CFLAGS="$SEAHORSE_CFLAGS $GP11_CFLAGS"
 		SEAHORSE_LIBS="$SEAHORSE_LIBS $GP11_LIBS"
 	fi
 fi
 
-AM_CONDITIONAL(WITH_PKCS11, test "$enable_pkcs11" == "yes")
+AM_CONDITIONAL(WITH_PKCS11, test "$enable_pkcs11" = "yes")
 
 dnl ****************************************************************************
 dnl  SSH 
@@ -474,7 +474,7 @@ else
     
 fi
 
-AM_CONDITIONAL(WITH_SSH, test "$enable_ssh" == "yes")
+AM_CONDITIONAL(WITH_SSH, test "$enable_ssh" = "yes")
 
 dnl ****************************************************************************
 
@@ -512,7 +512,7 @@ if test "$enable_tests" != "yes"; then
     enable_tests="no"
 fi
 
-AM_CONDITIONAL(WITH_TESTS, test "$enable_tests" == "yes")
+AM_CONDITIONAL(WITH_TESTS, test "$enable_tests" = "yes")
 
 dnl ****************************************************************************
 dnl LIBCRYPTUI



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