[lttng-dev] [PATCH lttng-tools] Fix: replace 1 for true in libxml checking
Jonathan Rajotte
jonathan.r.julien at gmail.com
Mon Apr 14 10:42:38 EDT 2014
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 <jonathan.r.julien at gmail.com>
---
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 54f82cf..a8fd7f7 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],
--
1.8.3.2
More information about the lttng-dev
mailing list