diff options
author | Emil Velikov <emil.l.velikov@gmail.com> | 2014-03-03 03:04:38 +0000 |
---|---|---|
committer | Emil Velikov <emil.l.velikov@gmail.com> | 2014-03-11 12:50:42 +0000 |
commit | b496ab05677d8ffecca416d4f34ffb06435d9509 (patch) | |
tree | 7e8226b0f3fbb52cb709f7605412ceea3e1555d9 /install-lib-links.mk | |
parent | 90a4ffdea5b8762954ce8805ad4e2ecd26f96630 (diff) |
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@gmail.com>
Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk>
Diffstat (limited to 'install-lib-links.mk')
-rw-r--r-- | install-lib-links.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install-lib-links.mk b/install-lib-links.mk index 73d9e14e6f..9dd4c30d47 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); \ |