diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2009-11-11 09:40:32 -0500 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2009-11-11 09:40:32 -0500 |
commit | 520f5cca38b2e108dc1b1094775a8b933011a813 (patch) | |
tree | e163bc1b552cc8a26e70168a2efa802e3e6455d9 | |
parent | c26c806fcebcf8171f0d7b65c0cf00c98b86f368 (diff) | |
download | systemtap-steved-520f5cca38b2e108dc1b1094775a8b933011a813.tar.gz systemtap-steved-520f5cca38b2e108dc1b1094775a8b933011a813.tar.xz systemtap-steved-520f5cca38b2e108dc1b1094775a8b933011a813.zip |
build: quiet down xmlto tests and runs
* configure.ac (xmlto --stringparam check): Add >&/dev/null.
* doc/*/Makefile.am (xmlto runs): Ditto.
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | doc/SystemTap_Tapset_Reference/Makefile.am | 6 | ||||
-rw-r--r-- | doc/SystemTap_Tapset_Reference/Makefile.in | 6 |
4 files changed, 8 insertions, 8 deletions
@@ -6842,7 +6842,7 @@ EOF if test "x${have_xmlto}" == "xyes"; then { $as_echo "$as_me:$LINENO: checking for xmlto --stringparam support" >&5 $as_echo_n "checking for xmlto --stringparam support... " >&6; } - xmlto --stringparam man.authors.section.enabled=0 txt conftest.xml + xmlto --stringparam man.authors.section.enabled=0 txt conftest.xml >/dev/null 2>&1 if test $? == 0; then have_xmlto_stringparam="yes" { $as_echo "$as_me:$LINENO: result: yes" >&5 diff --git a/configure.ac b/configure.ac index fe6bbf4e..e92adf5f 100644 --- a/configure.ac +++ b/configure.ac @@ -220,7 +220,7 @@ 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 + xmlto --stringparam man.authors.section.enabled=0 txt conftest.xml >/dev/null 2>&1 if test $? == 0; then have_xmlto_stringparam="yes" AC_MSG_RESULT([yes]) diff --git a/doc/SystemTap_Tapset_Reference/Makefile.am b/doc/SystemTap_Tapset_Reference/Makefile.am index 9787bbc9..454b3331 100644 --- a/doc/SystemTap_Tapset_Reference/Makefile.am +++ b/doc/SystemTap_Tapset_Reference/Makefile.am @@ -38,15 +38,15 @@ tapsets.xml: docproc $(shell find $(SRCTREE)/tapset -name '*.stp') fi stamp-htmldocs: tapsets.xml - xmlto $(XMLTOHTMLPARAMS) html -o tapsets tapsets.xml + xmlto $(XMLTOHTMLPARAMS) html -o tapsets tapsets.xml >/dev/null 2>&1 touch stamp-htmldocs # bump up the allocated space so "xmlto pdf" works tapsets.pdf: tapsets.xml - env pool_size=2000000 hash_extra=2000000 xmlto $(XMLTOPDFPARAMS) pdf tapsets.xml + env pool_size=2000000 hash_extra=2000000 xmlto $(XMLTOPDFPARAMS) pdf tapsets.xml >/dev/null 2>&1 stamp-mandocs: tapsets.xml - xmlto $(XMLTOMANPARAMS) man -o man3 tapsets.xml + xmlto $(XMLTOMANPARAMS) man -o man3 tapsets.xml >/dev/null 2>&1 touch stamp-mandocs #FIXME need to figure out where to install things appropriately diff --git a/doc/SystemTap_Tapset_Reference/Makefile.in b/doc/SystemTap_Tapset_Reference/Makefile.in index a088bda6..877dfae4 100644 --- a/doc/SystemTap_Tapset_Reference/Makefile.in +++ b/doc/SystemTap_Tapset_Reference/Makefile.in @@ -479,15 +479,15 @@ uninstall-am: @BUILD_REFDOCS_TRUE@ fi @BUILD_REFDOCS_TRUE@stamp-htmldocs: tapsets.xml -@BUILD_REFDOCS_TRUE@ xmlto $(XMLTOHTMLPARAMS) html -o tapsets tapsets.xml +@BUILD_REFDOCS_TRUE@ xmlto $(XMLTOHTMLPARAMS) html -o tapsets tapsets.xml >/dev/null 2>&1 @BUILD_REFDOCS_TRUE@ touch stamp-htmldocs # bump up the allocated space so "xmlto pdf" works @BUILD_REFDOCS_TRUE@tapsets.pdf: tapsets.xml -@BUILD_REFDOCS_TRUE@ env pool_size=2000000 hash_extra=2000000 xmlto $(XMLTOPDFPARAMS) pdf tapsets.xml +@BUILD_REFDOCS_TRUE@ env pool_size=2000000 hash_extra=2000000 xmlto $(XMLTOPDFPARAMS) pdf tapsets.xml >/dev/null 2>&1 @BUILD_REFDOCS_TRUE@stamp-mandocs: tapsets.xml -@BUILD_REFDOCS_TRUE@ xmlto $(XMLTOMANPARAMS) man -o man3 tapsets.xml +@BUILD_REFDOCS_TRUE@ xmlto $(XMLTOMANPARAMS) man -o man3 tapsets.xml >/dev/null 2>&1 @BUILD_REFDOCS_TRUE@ touch stamp-mandocs #FIXME need to figure out where to install things appropriately |