diff options
author | bde <bde@FreeBSD.org> | 1995-07-25 00:37:58 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-07-25 00:37:58 +0000 |
commit | f5284ed86d0500b99cc17d456bcee60b5ab265a5 (patch) | |
tree | 67449d23a48a9e1b2ffd0a92e0f11275368bb4b0 /gnu/usr.sbin | |
parent | 4325752c55741edf77fb2f1d08e1c059a8a3c225 (diff) | |
download | FreeBSD-src-f5284ed86d0500b99cc17d456bcee60b5ab265a5.zip FreeBSD-src-f5284ed86d0500b99cc17d456bcee60b5ab265a5.tar.gz |
Change `install' to `${INSTALL}' so that default install flags can be
specified in the top level Makefiles.
Diffstat (limited to 'gnu/usr.sbin')
-rw-r--r-- | gnu/usr.sbin/yppasswdd/Makefile | 4 | ||||
-rw-r--r-- | gnu/usr.sbin/ypserv/Makefile | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/gnu/usr.sbin/yppasswdd/Makefile b/gnu/usr.sbin/yppasswdd/Makefile index b2109f6..499405f 100644 --- a/gnu/usr.sbin/yppasswdd/Makefile +++ b/gnu/usr.sbin/yppasswdd/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.5 1995/04/01 19:23:11 wpaul Exp $ +# $Id: Makefile,v 1.6 1995/07/19 17:44:32 wpaul Exp $ # @(#)Makefile 8.3 (Berkeley) 4/2/94 PROG= yppasswdd @@ -12,7 +12,7 @@ CFLAGS+=-DCRYPT -I${.CURDIR} -I${.CURDIR}/../../../usr.sbin/vipw \ CFLAGS+=-DVERSION=\"0.7\" -DYPLIBDIR=\"/usr/libexec\" -D_GNU_SOURCE afterinstall: - install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${.CURDIR}/yppwupdate \ ${DESTDIR}/usr/libexec/yppwupdate diff --git a/gnu/usr.sbin/ypserv/Makefile b/gnu/usr.sbin/ypserv/Makefile index 3138c17..edc8ac0 100644 --- a/gnu/usr.sbin/ypserv/Makefile +++ b/gnu/usr.sbin/ypserv/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.6 1995/02/15 04:33:52 wpaul Exp $ +# $Id: Makefile,v 1.7 1995/07/12 16:28:10 wpaul Exp $ # From: @(#)Makefile 8.3 (Berkeley) 4/2/94 PROG= ypserv @@ -10,10 +10,10 @@ CFLAGS+=-DMAX_CHILDREN=20 -DINSTDIR='"/usr/libexec"' MAN8= ypserv.8 afterinstall: - install -c -o ${BINOWN} -g ${BINGRP} -m 444 \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \ ${.CURDIR}/Makefile.yp \ ${DESTDIR}/var/yp/Makefile - install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${.CURDIR}/mknetid \ ${DESTDIR}/usr/libexec/mknetid |