Fix: replace 1 for true in libxml checking
authorJonathan Rajotte <jonathan.r.julien@gmail.com>
Mon, 14 Apr 2014 14:42:38 +0000 (10:42 -0400)
committerDavid Goulet <dgoulet@efficios.com>
Mon, 14 Apr 2014 14:47:50 +0000 (10:47 -0400)
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@gmail.com>
configure.ac

index 54f82cfbdfd94b86a8195aea22adbee9cea5cb02..a8fd7f7ecff3f785e59a5960b8c0bd25763459c9 100644 (file)
@@ -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],
This page took 0.025797 seconds and 4 git commands to generate.