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-22 00:45:55 -0500 |
commit | 0820a6e2fb005b5f856dda25e1644f34fc994129 (patch) | |
tree | 126ea859893d927a312da9b04e81a8e3cb46e392 /hw/xquartz | |
parent | 9be4157391edf0c5fc4ee36adfb1eb1c3bdb8e3b (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>
Reviewed-by: Alan Coopersmith <alan.coopersmith@sun.com>
Reviewed-by: Julien Cristau <jcristau@debian.org>
Diffstat (limited to 'hw/xquartz')
-rw-r--r-- | hw/xquartz/doc/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xquartz/doc/Makefile.am b/hw/xquartz/doc/Makefile.am index b812af1cb..7310de353 100644 --- a/hw/xquartz/doc/Makefile.am +++ b/hw/xquartz/doc/Makefile.am @@ -8,7 +8,7 @@ CLEANFILES = $(appman_PROCESSED) $(appman_DATA) include $(top_srcdir)/cpprules.in .man.$(APP_MAN_SUFFIX): - cp $< $@ + $(AM_V_at)cp $< $@ EXTRA_DIST = \ Xquartz.man.pre |