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

* Re: [PATCH] Fix libdaxctl option
  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é
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Huth @ 2021-07-07  6:35 UTC (permalink / raw)
  To: Miroslav Rezanina, qemu-devel; +Cc: QEMU Trivial, pbonzini

On 07/07/2021 08.31, Miroslav Rezanina wrote:
> 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"
>     ;;
> 

Fixes: 83ef16821a ("configure, meson: convert libdaxctl detection to meson")

Reviewed-by: Thomas Huth <thuth@redhat.com>



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

* Re: [PATCH] Fix libdaxctl option
  2021-07-07  6:35 ` Thomas Huth
@ 2021-07-07  8:13   ` Philippe Mathieu-Daudé
  0 siblings, 0 replies; 3+ messages in thread
From: Philippe Mathieu-Daudé @ 2021-07-07  8:13 UTC (permalink / raw)
  To: Thomas Huth, Miroslav Rezanina, qemu-devel; +Cc: QEMU Trivial, pbonzini

On 7/7/21 8:35 AM, Thomas Huth wrote:
> On 07/07/2021 08.31, Miroslav Rezanina wrote:
>> 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"
>>     ;;
>>
> 
> Fixes: 83ef16821a ("configure, meson: convert libdaxctl detection to
> meson")
> 
> Reviewed-by: Thomas Huth <thuth@redhat.com>

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>



^ permalink raw reply	[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.