diff options
author | Diego Elio 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2010-07-28 22:47:54 +0200 |
---|---|---|
committer | Karel Zak <kzak@redhat.com> | 2010-07-29 17:48:22 +0200 |
commit | 533b9dce293e71abe942472956bac8a091d36d35 (patch) | |
tree | 730129c3c983a8e87d8980c7013dafa72aa07b22 | |
parent | ebc83db1a1d123a74da7e8bd07b281ab17e18ed6 (diff) | |
download | util-linux-old-533b9dce293e71abe942472956bac8a091d36d35.tar.gz |
build-sys: use the silent-rules prefix when generating man pages.
This is backward-compatible with automake 1.10 as the AM_V_GEN macro
is going to be null anyway.
Signed-off-by: Diego Elio 'Flameeyes' Pettenò <flameeyes@gmail.com>
-rw-r--r-- | shlibs/uuid/man/Makefile.am | 2 | ||||
-rw-r--r-- | sys-utils/Makefile.am | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/shlibs/uuid/man/Makefile.am b/shlibs/uuid/man/Makefile.am index ffaf0241..4784f7ca 100644 --- a/shlibs/uuid/man/Makefile.am +++ b/shlibs/uuid/man/Makefile.am @@ -9,4 +9,4 @@ man_MANS = $(UUID_GENERATE_LINKS) CLEANFILES = $(man_MANS) $(UUID_GENERATE_LINKS): uuid_generate.3 - echo ".so man3/uuid_generate.3" > $@ + $(AM_V_GEN)echo ".so man3/uuid_generate.3" > $@ diff --git a/sys-utils/Makefile.am b/sys-utils/Makefile.am index 1ed07bee..9d6869cf 100644 --- a/sys-utils/Makefile.am +++ b/sys-utils/Makefile.am @@ -89,7 +89,7 @@ man_MANS = $(RDEV_MAN_LINKS) $(SETARCH_MAN_LINKS) CLEANFILES = $(man_MANS) $(SETARCH_MAN_LINKS): setarch.8 - echo ".so man8/setarch.8" > $@ + $(AM_V_GEN)echo ".so man8/setarch.8" > $@ install-exec-hook: for I in $(SETARCH_LINKS); do \ |