From 84eb6effdd0241a8bae196d4b77d873aea7fd3db Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Wed, 24 Mar 2010 09:39:54 +0100 Subject: [PATCH] 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. --- src/Makefile.am | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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 -- GitLab