[Ocfs2-tools-devel] [PATCH] ocfs2-tools: fix a tiny mistake

Eric Ren zren at suse.com
Mon Mar 21 21:56:18 PDT 2016


Commit 9be25f2fadf7 ("Get cluster list info from corosync") made a
little obvious mistake, so fix it.

Signed-off-by: Eric Ren <zren at suse.com>
Acked-by: Goldwyn Rodrigues <rgoldwyn at suse.com>
---
 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.in b/configure.in
index f423da2..83b8214 100644
--- a/configure.in
+++ b/configure.in
@@ -390,7 +390,7 @@ AC_SUBST(LIBCMAP_FOUND)
 fsdlm_found=
 if test "x$LIBCMAP_FOUND" = "xyes"; then
   AC_CHECK_LIB(cmap, cmap_initialize, cmap_found=yes)
-  if test "x$cmap_found" = "xyes"; then
+  if ! test "x$cmap_found" = "xyes"; then
     AC_MSG_WARN([libcmap not found, cmap support will not be built. Older api will be used])
   fi
 fi
-- 
2.6.2




More information about the Ocfs2-tools-devel mailing list