From 47dee7af0b77bc123e5502a5a02d0852dc35ab74 Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Fri, 23 Jul 1993 02:58:20 +0000 Subject: [PATCH] Changes to make `maninstall' work. --- gnu/usr.bin/man/apropos/Makefile | 4 +++- gnu/usr.bin/man/whatis/Makefile | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/gnu/usr.bin/man/apropos/Makefile b/gnu/usr.bin/man/apropos/Makefile index 8073f990792a..7ccdf8170917 100644 --- a/gnu/usr.bin/man/apropos/Makefile +++ b/gnu/usr.bin/man/apropos/Makefile @@ -28,8 +28,10 @@ ${MANP}: ${.CURDIR}/apropos.man -e 's,%manpath_config_file%,${manpath_config_file},' \ ${.CURDIR}/apropos.man > $@ -install: ${TARG} ${MANP} +install: ${TARG} maninstall install -c -o bin -g bin -m 555 ${TARG} /usr/bin + +maninstall: ${MANP} install -c -o bin -g bin -m 444 ${MANP} /usr/share/man/man1 .include "../Makefile.inc" diff --git a/gnu/usr.bin/man/whatis/Makefile b/gnu/usr.bin/man/whatis/Makefile index ebafe0359937..fe7f38985ff6 100644 --- a/gnu/usr.bin/man/whatis/Makefile +++ b/gnu/usr.bin/man/whatis/Makefile @@ -28,8 +28,10 @@ ${MANP}: ${.CURDIR}/whatis.man -e 's,%manpath_config_file%,${manpath_config_file},' \ ${.CURDIR}/whatis.man > ${MANP} -install: ${TARG} ${MANP} +install: ${TARG} maninstall install -c -o bin -g bin -m 555 ${TARG} /usr/bin + +maninstall: ${MANP} install -c -o bin -g bin -m 444 ${MANP} /usr/share/man/man1 .include "../Makefile.inc"