> For some reason, libpmem option setting was set to work in an opposite > way (--enable-libpmem disabled it and vice versa). Fixing this so > configuration works properly. > > Signed-off-by: Miroslav Rezanina <mreza...@redhat.com> > --- > configure | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/configure b/configure > index 7994bdee92..ffa93cc5fd 100755 > --- a/configure > +++ b/configure > @@ -1501,9 +1501,9 @@ for opt do > ;; > --disable-debug-mutex) debug_mutex=no > ;; > - --enable-libpmem) libpmem=disabled > + --enable-libpmem) libpmem="enabled" > ;; > - --disable-libpmem) libpmem=enabled > + --disable-libpmem) libpmem="disabled" > ;; > --enable-xkbcommon) xkbcommon="enabled" > ;;
Reviewed-by: Pankaj Gupta <pankaj.gu...@ionos.com>