automake: make install-lib-links less chatty
authorEmil Velikov <emil.l.velikov@gmail.com>
Mon, 3 Mar 2014 03:04:38 +0000 (03:04 +0000)
committerEmil Velikov <emil.l.velikov@gmail.com>
Tue, 11 Mar 2014 12:50:42 +0000 (12:50 +0000)
There is little point in echoing everything that the script does
to stdout. Wrap it in AM_V_GEN so that a reasonable message is
printed as a indication of it's invocation.

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk>
install-lib-links.mk

index 73d9e14e6f3e08696ec3d61cc744d1e3420e2d2b..9dd4c30d47c3bad72f8a9bfe0e9b590d29db83af 100644 (file)
@@ -4,7 +4,7 @@
 all-local : .libs/install-mesa-links
 
 .libs/install-mesa-links : $(lib_LTLIBRARIES)
-       $(MKDIR_P) $(top_builddir)/$(LIB_DIR)
+       $(AM_V_GEN)$(MKDIR_P) $(top_builddir)/$(LIB_DIR);       \
        for f in $(lib_LTLIBRARIES:%.la=.libs/%.so*); do        \
                if test -h .libs/$$f; then                      \
                        cp -d $$f $(top_builddir)/$(LIB_DIR);   \