crypto/linux_keyring: fix 'secret_keyring' configure test
authorDavid Edmondson <david.edmondson@oracle.com>
Wed, 1 Jul 2020 13:56:15 +0000 (14:56 +0100)
committerAlex Bennée <alex.bennee@linaro.org>
Sat, 11 Jul 2020 14:52:59 +0000 (15:52 +0100)
The configure test for 'secret_keyring' incorrectly checked the
'have_keyring' variable.

Fixes: 54e7aac0562452e4fcab65ca5001d030eef2de15
Signed-off-by: David Edmondson <david.edmondson@oracle.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20200618092636.71832-1-david.edmondson@oracle.com>
Message-Id: <20200701135652.1366-4-alex.bennee@linaro.org>

configure

index ee6c3c6792ac64c10b426ebae98068287c76629f..22377aa62749109d9dd8bedc282d0ea9d1c4768b 100755 (executable)
--- a/configure
+++ b/configure
@@ -6486,7 +6486,7 @@ EOF
 fi
 if test "$secret_keyring" != "no"
 then
-    if test "$have_keyring" == "yes"
+    if test "$have_keyring" = "yes"
     then
        secret_keyring=yes
     else