summaryrefslogtreecommitdiff
path: root/lib/am/header.am
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>1996-12-08 21:05:11 +0000
committerTom Tromey <tromey@redhat.com>1996-12-08 21:05:11 +0000
commit12014054a57586637e1ec077cbcd32448874200d (patch)
tree251559689e4368d75f87d2a8e137e733bd3be96b /lib/am/header.am
parentb2362a251bff82209250403e8539cd5c21f72992 (diff)
downloadautomake-12014054a57586637e1ec077cbcd32448874200d.tar.gz
installs now 'quiet'
Diffstat (limited to 'lib/am/header.am')
-rw-r--r--lib/am/header.am3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/am/header.am b/lib/am/header.am
index 653009c6a..2c4435bc5 100644
--- a/lib/am/header.am
+++ b/lib/am/header.am
@@ -20,7 +20,8 @@ install-@DIR@HEADERS: $(@DIR@_HEADERS)
$(mkinstalldirs) $(@DIR@dir)
## Funny invocation because Makefile variable can be empty, leading to
## a syntax error in sh.
- list="$(@DIR@_HEADERS)"; for p in $$list; do \
+ @list="$(@DIR@_HEADERS)"; for p in $$list; do \
+ echo "$(INSTALL_DATA) $(srcdir)/$$p $(@DIR@dir)/$$p"; \
$(INSTALL_DATA) $(srcdir)/$$p $(@DIR@dir)/$$p; \
done