summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorDavid Edmondson2020-07-01 15:56:15 +0200
committerAlex Bennée2020-07-11 16:52:59 +0200
commitb418d2656112174ce27117ae4f75594b6a8abc5f (patch)
treee9b471e5b1e86c6a885ab8f52a0e4e6cece08928 /configure
parentMerge remote-tracking branch 'remotes/aperard/tags/pull-xen-20200710' into st... (diff)
downloadqemu-b418d2656112174ce27117ae4f75594b6a8abc5f.tar.gz
qemu-b418d2656112174ce27117ae4f75594b6a8abc5f.tar.xz
qemu-b418d2656112174ce27117ae4f75594b6a8abc5f.zip
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 <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>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index ee6c3c6792..22377aa627 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