diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2009-12-16 18:26:55 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2009-12-16 18:26:55 -0800 |
commit | 16db2ab4794064c970177cdce2bfcf94febda94c (patch) | |
tree | 8cd46d1373f7dee092f1a03205840c17dbf21372 | |
parent | d1698a27d92e1cd81d64328b3013d204e8443982 (diff) |
Silence sed substitutions in make output
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index f09a160..8523175 100644 --- a/Makefile.am +++ b/Makefile.am @@ -69,7 +69,7 @@ MAN_SUBSTS = \ SUFFIXES = .$(APP_MAN_SUFFIX) .man .man.$(APP_MAN_SUFFIX): - sed $(MAN_SUBSTS) < $< > $@ + $(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@ .PHONY: ChangeLog INSTALL |