crypto/linux_keyring: fix 'secret_keyring' configure test

The configure test for 'secret_keyring' incorrectly checked the
'have_keyring' variable.

Fixes: 54e7aac056
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>
This commit is contained in:
David Edmondson 2020-07-01 14:56:15 +01:00 committed by Alex Bennée
parent 827937158b
commit b418d26561
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -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