From 111f32a97f31b086795af7f43e34bab54934d012 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Diego=20Elio=20=27Flameeyes=27=20Petten=C3=B2?= Date: Wed, 28 Jul 2010 22:47:55 +0200 Subject: [PATCH] build-sys: man aliases don't depend on original man page MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Avoid rebuilding the man aliases over and over given that they do not copy the content but only alias it. Signed-off-by: Diego Elio 'Flameeyes' Pettenò --- shlibs/uuid/man/Makefile.am | 2 +- 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 4784f7ca..38809522 100644 --- a/shlibs/uuid/man/Makefile.am +++ b/shlibs/uuid/man/Makefile.am @@ -8,5 +8,5 @@ UUID_GENERATE_LINKS = uuid_generate_random.3 uuid_generate_time.3 man_MANS = $(UUID_GENERATE_LINKS) CLEANFILES = $(man_MANS) -$(UUID_GENERATE_LINKS): uuid_generate.3 +$(UUID_GENERATE_LINKS): $(AM_V_GEN)echo ".so man3/uuid_generate.3" > $@ diff --git a/sys-utils/Makefile.am b/sys-utils/Makefile.am index 9d6869cf..166d7188 100644 --- a/sys-utils/Makefile.am +++ b/sys-utils/Makefile.am @@ -88,7 +88,7 @@ SETARCH_MAN_LINKS = $(SETARCH_LINKS:=.8) man_MANS = $(RDEV_MAN_LINKS) $(SETARCH_MAN_LINKS) CLEANFILES = $(man_MANS) -$(SETARCH_MAN_LINKS): setarch.8 +$(SETARCH_MAN_LINKS): $(AM_V_GEN)echo ".so man8/setarch.8" > $@ install-exec-hook: -- 2.39.5