diff options
| author | Bill Paul <wpaul@FreeBSD.org> | 1995-02-15 04:33:52 +0000 |
|---|---|---|
| committer | Bill Paul <wpaul@FreeBSD.org> | 1995-02-15 04:33:52 +0000 |
| commit | f464a3788ede86c2ccabcf2e6afde0fc10d2dbc4 (patch) | |
| tree | dc877deb6175d483ddc81a0aac2f73437e9e4bcf /gnu/usr.sbin | |
| parent | 78ff637a2c2171d43bf2504bed92c4155d485516 (diff) | |
Notes
Diffstat (limited to 'gnu/usr.sbin')
| -rw-r--r-- | gnu/usr.sbin/ypserv/Makefile | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/gnu/usr.sbin/ypserv/Makefile b/gnu/usr.sbin/ypserv/Makefile index 8ce36f660286..1d064a724730 100644 --- a/gnu/usr.sbin/ypserv/Makefile +++ b/gnu/usr.sbin/ypserv/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.4 1995/02/03 22:01:17 wpaul Exp $ +# $Id: Makefile,v 1.5 1995/02/04 21:31:58 wpaul Exp $ # From: @(#)Makefile 8.3 (Berkeley) 4/2/94 PROG= ypserv @@ -9,13 +9,12 @@ CFLAGS+=-DINSTDIR='"/usr/libexec"' MAN8= ypserv.8 -afterinstall: /var/yp/Makefile /usr/libexec/mknetid - -/var/yp/Makefile: ${.CURDIR}/Makefile.yp - @if [ ! -d /var/yp ]; then mkdir /var/yp; fi - install -c -o bin -g bin -m 444 ${.CURDIR}/Makefile.yp /var/yp/Makefile - -/usr/libexec/mknetid: ${.CURDIR}/mknetid - install -c -o bin -g bin -m 555 ${.CURDIR}/mknetid /usr/libexec/mknetid +afterinstall: + install -c -o ${BINOWN} -g ${BINGRP} -m 444 \ + ${.CURDIR}/Makefile.yp \ + ${DESTDIR}/var/yp/Makefile + install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + ${.CURDIR}/mknetid \ + ${DESTDIR}/usr/libexec/mknetid .include <bsd.prog.mk> |
