diff options
author | Eugeniy Meshcheryakov <eugen@debian.org> | 2010-01-21 14:52:09 +0100 |
---|---|---|
committer | Eugeniy Meshcheryakov <eugen@debian.org> | 2010-01-21 14:52:09 +0100 |
commit | b653135b619fedf74da824239298125eaa71066c (patch) | |
tree | 8610e28dc86b8892eb0a8b4b402c09ad197d6a2d | |
parent | d922b6beafda87737d3dd7d0399f7930d5f6fa66 (diff) | |
download | systemtap-steved-b653135b619fedf74da824239298125eaa71066c.tar.gz systemtap-steved-b653135b619fedf74da824239298125eaa71066c.tar.xz systemtap-steved-b653135b619fedf74da824239298125eaa71066c.zip |
Use html-nochunks output instead of txt to test for stringparam support in xmlto
txt output requires additional build dependencies (w3m or similar
browser).
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 36f23374..2ec625d3 100644 --- a/configure.ac +++ b/configure.ac @@ -249,14 +249,14 @@ EOF if test "x${have_xmlto}" == "xyes"; then AC_MSG_CHECKING([for xmlto --stringparam support]) - xmlto --stringparam man.authors.section.enabled=0 txt conftest.xml >/dev/null 2>&1 + xmlto --stringparam man.authors.section.enabled=0 html-nochunks conftest.xml >/dev/null 2>&1 if test $? == 0; then have_xmlto_stringparam="yes" AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) fi - rm -f conftest.txt + rm -f conftest.html fi AM_CONDITIONAL([XMLTO_STRINGPARAM], [test "$have_xmlto_stringparam" == "yes"]) |