Mesa (master): automake: make install-lib-links less chatty

Emil Velikov evelikov at kemper.freedesktop.org
Tue Mar 11 13:07:19 UTC 2014


Module: Mesa
Branch: master
Commit: b496ab05677d8ffecca416d4f34ffb06435d9509
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=b496ab05677d8ffecca416d4f34ffb06435d9509

Author: Emil Velikov <emil.l.velikov at gmail.com>
Date:   Mon Mar  3 03:04:38 2014 +0000

automake: make install-lib-links less chatty

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 at gmail.com>
Reviewed-by: Jon TURNEY <jon.turney at dronecode.org.uk>

---

 install-lib-links.mk |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/install-lib-links.mk b/install-lib-links.mk
index 73d9e14..9dd4c30 100644
--- a/install-lib-links.mk
+++ b/install-lib-links.mk
@@ -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);	\




More information about the mesa-commit mailing list