diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2009-10-02 21:54:53 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2009-10-06 19:40:20 -0700 |
commit | 315aaef55750a863c08a16ad9120ffb76f9b48e0 (patch) | |
tree | e77127c2c83fdcf89f4e30ab0fa39e28c94795ee /cpprules.in | |
parent | 2e294380b64b6362173d0590c4292f290e50af50 (diff) |
Use $(AM_V_GEN) to silence more commands when AM_SILENT_RULES is active
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
Acked-by: Dan Nicholson <dbn.lists@gmail.com>
Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'cpprules.in')
-rw-r--r-- | cpprules.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpprules.in b/cpprules.in index 755620005..7fcb9bd6f 100644 --- a/cpprules.in +++ b/cpprules.in @@ -42,7 +42,7 @@ MANDEFS = \ -D__xlogfile__=$(XLOGFILE) -D__xservername__=$(XSERVERNAME) .pre: - $(RAWCPP) $(RAWCPPFLAGS) $(CPP_FILES_FLAGS) < $< | $(CPP_SED_MAGIC) > $@ + $(AM_V_GEN)$(RAWCPP) $(RAWCPPFLAGS) $(CPP_FILES_FLAGS) < $< | $(CPP_SED_MAGIC) > $@ .man.pre.man: - $(RAWCPP) $(RAWCPPFLAGS) $(MANDEFS) $(EXTRAMANDEFS) < $< | $(CPP_SED_MAGIC) > $@ + $(AM_V_GEN)$(RAWCPP) $(RAWCPPFLAGS) $(MANDEFS) $(EXTRAMANDEFS) < $< | $(CPP_SED_MAGIC) > $@ |