From f464a3788ede86c2ccabcf2e6afde0fc10d2dbc4 Mon Sep 17 00:00:00 2001 From: Bill Paul Date: Wed, 15 Feb 1995 04:33:52 +0000 Subject: [PATCH] Fix losing Makefile so that it properly honors DESTDIR when installing /var/yp/Makefile and /usr/libexec/mknetid. *grumble* *mutter* *mutter* --- gnu/usr.sbin/ypserv/Makefile | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/gnu/usr.sbin/ypserv/Makefile b/gnu/usr.sbin/ypserv/Makefile index 8ce36f66028..1d064a72473 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