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 <[email protected]> --- 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 _______________________________________________ lttng-dev mailing list [email protected] http://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev
