]> xenbits.xensource.com Git - people/liuw/libxenctrl-split/libvirt.git/commitdiff
build: suppress distracting build output
authorJim Meyering <meyering@redhat.com>
Wed, 24 Mar 2010 08:39:54 +0000 (09:39 +0100)
committerJim Meyering <meyering@redhat.com>
Wed, 24 Mar 2010 08:45:24 +0000 (09:45 +0100)
* 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

index 0aa344351bb4866818f355ca91c9641d9e4f088c..5f6b32501a05080b9ad282127a72890eb3f8fc79 100644 (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