From: David Edmondson Date: Wed, 1 Jul 2020 13:56:15 +0000 (+0100) Subject: crypto/linux_keyring: fix 'secret_keyring' configure test X-Git-Tag: v5.1.0-rc0~15^2~49 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b418d2656112174ce27117ae4f75594b6a8abc5f;p=thirdparty%2Fqemu.git crypto/linux_keyring: fix 'secret_keyring' configure test The configure test for 'secret_keyring' incorrectly checked the 'have_keyring' variable. Fixes: 54e7aac0562452e4fcab65ca5001d030eef2de15 Signed-off-by: David Edmondson Signed-off-by: Alex Bennée Reviewed-by: Thomas Huth Message-Id: <20200618092636.71832-1-david.edmondson@oracle.com> Message-Id: <20200701135652.1366-4-alex.bennee@linaro.org> --- diff --git a/configure b/configure index ee6c3c6792a..22377aa6274 100755 --- 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