diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2009-12-16 18:17:26 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2009-12-16 18:17:26 -0800 |
commit | 327ede732bd05185a459c195dbc9ceee250b3b71 (patch) | |
tree | 99a12c61df386a37033fd458b603283814c1df07 | |
parent | c6ff6c3bba57a5134b050bead65dd6a1ff2f42aa (diff) |
Silence sed substitutions in make output
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
-rw-r--r-- | man/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man/Makefile.am b/man/Makefile.am index ceca076..ba82909 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -55,4 +55,4 @@ MAN_SUBSTS = \ SUFFIXES = .$(DRIVER_MAN_SUFFIX) .man .man.$(DRIVER_MAN_SUFFIX): - sed $(MAN_SUBSTS) < $< > $@ + $(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@ |