All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix libdaxctl option
@ 2021-07-07  6:31 Miroslav Rezanina
  2021-07-07  6:35 ` Thomas Huth
  0 siblings, 1 reply; 3+ messages in thread
From: Miroslav Rezanina @ 2021-07-07  6:31 UTC (permalink / raw)
  To: qemu-devel; +Cc: pbonzini, Miroslav Rezanina

For some reason, libdaxctl option setting was set to work in an opposite
way (--enable-libdaxctl disabled it and vice versa). Fixing this so
configuration works properly.

Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
---
 configure | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure b/configure
index 650d9c0735..4f51528a77 100755
--- a/configure
+++ b/configure
@@ -1531,9 +1531,9 @@ for opt do
   ;;
   --disable-keyring) secret_keyring="no"
   ;;
-  --enable-libdaxctl) libdaxctl=disabled
+  --enable-libdaxctl) libdaxctl="enabled"
   ;;
-  --disable-libdaxctl) libdaxctl=enabled
+  --disable-libdaxctl) libdaxctl="disabled"
   ;;
   --enable-fuse) fuse="enabled"
   ;;
-- 
2.27.0



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

end of thread, other threads:[~2021-07-07  8:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-07  6:31 [PATCH] Fix libdaxctl option Miroslav Rezanina
2021-07-07  6:35 ` Thomas Huth
2021-07-07  8:13   ` Philippe Mathieu-Daudé

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.