qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] crypto/linux_keyring: fix 'secret_keyring' configure test
@ 2020-06-18  9:26 David Edmondson
  2020-06-18  9:49 ` no-reply
  2020-06-19 14:19 ` Daniel P. Berrangé
  0 siblings, 2 replies; 3+ messages in thread
From: David Edmondson @ 2020-06-18  9:26 UTC (permalink / raw)
  To: qemu-devel; +Cc: David Edmondson

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

Fixes: 54e7aac0562452e4fcab65ca5001d030eef2de15
Signed-off-by: David Edmondson <david.edmondson@oracle.com>
---
 configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure b/configure
index b01b5e3bed00..6effee02b9cf 100755
--- a/configure
+++ b/configure
@@ -6345,7 +6345,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.27.0



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-06-19 14:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-06-18  9:26 [PATCH] crypto/linux_keyring: fix 'secret_keyring' configure test David Edmondson
2020-06-18  9:49 ` no-reply
2020-06-19 14:19 ` Daniel P. Berrangé

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).