From 341aa9202ff8c0f68d1cf808d1f6caef37c15ad8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20Bothamy?= Date: Sat, 12 Jan 2008 22:35:51 -0700 Subject: [PATCH] sys-utils: correct setarch.8 manpage link creation MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit At least on Debian, .so commands are relative to the man directory (e.g., /usr/share/man), not to the subdirectory: % man i386 man: can't open /usr/share/man/setarch.8: No such file or directory No manual entry for i386 See also http://bugs.debian.org/453245 Addresses-Debian-Bug: #453245 Signed-off-by: Frédéric Bothamy Signed-off-by: LaMont Jones Signed-off-by: Karel Zak --- sys-utils/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-utils/Makefile.am b/sys-utils/Makefile.am index 4ef94d4d..ccfcd9d8 100644 --- a/sys-utils/Makefile.am +++ b/sys-utils/Makefile.am @@ -74,7 +74,7 @@ man_MANS += $(SETARCH_MAN_LINKS) CLEANFILES=$(SETARCH_MAN_LINKS) $(SETARCH_MAN_LINKS): setarch.8 - echo ".so setarch.8" > $@ + echo ".so man8/setarch.8" > $@ install-exec-hook: for I in $(RDEV_LINKS); do \ -- 2.39.5