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.
This commit is contained in:
Jim Meyering 2010-03-24 09:39:54 +01:00
parent 95c8ddd2ec
commit 84eb6effdd

View File

@ -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