From: Jonathan Rajotte Date: Mon, 14 Apr 2014 14:42:38 +0000 (-0400) Subject: Fix: replace 1 for true in libxml checking X-Git-Tag: v2.5.0-rc1~70 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=3c038aa8da3c5b2e754556a06b132e1777af21f9 Fix: replace 1 for true in libxml checking Initial bug on ./configure: checking for libxml - version >= 2.7.6... yes (version 2.9.1) ./configure: line 5137: 1: command not found Signed-off-by: Jonathan Rajotte --- diff --git a/configure.ac b/configure.ac index 54f82cfbd..a8fd7f7ec 100644 --- a/configure.ac +++ b/configure.ac @@ -147,7 +147,7 @@ AC_CHECK_LIB([popt], [poptGetContext], [], [AC_MSG_ERROR([Cannot find libpopt. Use [LDFLAGS]=-Ldir to specify its location.])] ) -AM_PATH_XML2(2.7.6, 1, AC_MSG_ERROR(No supported version of libxml2 found.)) +AM_PATH_XML2(2.7.6, true, AC_MSG_ERROR(No supported version of libxml2 found.)) # Check for libuuid AC_CHECK_LIB([uuid], [uuid_generate],