diff options
author | Yaakov Selkowitz <yselkowitz@users.sourceforge.net> | 2010-03-17 13:40:41 -0500 |
---|---|---|
committer | Yaakov Selkowitz <yselkowitz@users.sourceforge.net> | 2010-03-17 15:06:07 -0500 |
commit | 30cda4d7f3da334e4b0649c316c3a7611717137a (patch) | |
tree | d0e929900013ec596e4039528f0b2d838c5853ef /hw/dmx/config | |
parent | 4aa3a00b78edac8c11839a92d387906804a4d252 (diff) |
Fix .man.N targets for AM_SILENT_RULES
Add $(AM_V_GEN) for sed-based rules so they appear as expected with
automake silent rules, and $(AM_V_at) to completely hide cp/ln/rm
commands which are not prone to fail.
Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
Diffstat (limited to 'hw/dmx/config')
-rw-r--r-- | hw/dmx/config/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/dmx/config/Makefile.am b/hw/dmx/config/Makefile.am index 7de745f53..25a814e79 100644 --- a/hw/dmx/config/Makefile.am +++ b/hw/dmx/config/Makefile.am @@ -69,7 +69,7 @@ XORGRELSTRING = @PACKAGE_STRING@ MAN_SUBSTS = -e 's|__vendorversion__|"$(XORGRELSTRING)" "$(XORGMANNAME)"|' .man.$(APP_MAN_SUFFIX): - $(SED) $(MAN_SUBSTS) < $< > $@ + $(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@ EXTRA_DIST = \ $(appman_PRE) \ |