From: Jim Meyering Date: Wed, 24 Mar 2010 08:39:54 +0000 (+0100) Subject: build: suppress distracting build output X-Git-Tag: v0.8.0~226 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=84eb6effdd0241a8bae196d4b77d873aea7fd3db;p=thirdparty%2Flibvirt.git build: suppress distracting build output * src/Makefile.am (augeas-check): New target, just to give the existing rule a name. At the same time, prefix the commands with $(AM_V_GEN), to avoid unexpected build output with V=0 which is the default. --- diff --git a/src/Makefile.am b/src/Makefile.am index 0aa344351b..5f6b32501a 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -766,15 +766,18 @@ EXTRA_DIST += \ $(SECRET_DRIVER_SOURCES) \ $(VBOX_DRIVER_EXTRA_DIST) -check-local: +check-local: augeas-check + +.PHONY: augeas-check +augeas-check: if WITH_QEMU - if test -x '$(AUGPARSE)'; then \ + $(AM_V_GEN)if test -x '$(AUGPARSE)'; then \ '$(AUGPARSE)' -I $(srcdir)/qemu \ $(srcdir)/qemu/test_libvirtd_qemu.aug; \ fi endif if WITH_LXC - if test -x '$(AUGPARSE)'; then \ + $(AM_V_GEN)if test -x '$(AUGPARSE)'; then \ '$(AUGPARSE)' -I $(srcdir)/lxc \ $(srcdir)/lxc/test_libvirtd_lxc.aug; \ fi