From: David Edmondson <[email protected]> The configure test for 'secret_keyring' incorrectly checked the 'have_keyring' variable.
Fixes: 54e7aac0562452e4fcab65ca5001d030eef2de15 Signed-off-by: David Edmondson <[email protected]> Signed-off-by: Alex Bennée <[email protected]> Reviewed-by: Thomas Huth <[email protected]> Message-Id: <[email protected]> --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index ae8737d5a2c..25b65981142 100755 --- a/configure +++ b/configure @@ -6437,7 +6437,7 @@ EOF fi if test "$secret_keyring" != "no" then - if test "$have_keyring" == "yes" + if test "$have_keyring" = "yes" then secret_keyring=yes else -- 2.20.1
