diff options
author | bde <bde@FreeBSD.org> | 1995-08-06 12:24:38 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-08-06 12:24:38 +0000 |
commit | 6579f34131bcc90bb095184a1ab0c491ba0b59b5 (patch) | |
tree | 654fdd1b68d3f3b66fa5852885ab296a298270bf /libexec/rbootd | |
parent | d37f4ba3bc52c05290e132d2ec3d080bdb31c9fd (diff) | |
download | FreeBSD-src-6579f34131bcc90bb095184a1ab0c491ba0b59b5.zip FreeBSD-src-6579f34131bcc90bb095184a1ab0c491ba0b59b5.tar.gz |
Change `install' to `${INSTALL}' so that default install flags can be
specified in the top level Makefiles.
Previously I missed dozens of Makefiles that skip the install after
using `cmp -s' to decide that the install isn't necessary.
Diffstat (limited to 'libexec/rbootd')
-rw-r--r-- | libexec/rbootd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/rbootd/Makefile b/libexec/rbootd/Makefile index cd0c52e..369b1e7 100644 --- a/libexec/rbootd/Makefile +++ b/libexec/rbootd/Makefile @@ -6,7 +6,7 @@ MAN8= rbootd.8 # XXX BROKEN: afterinstall: XXXafterinstall: - (cd ${.CURDIR}/bootdir && install -c -o ${BINOWN} -g ${BINGRP} \ + (cd ${.CURDIR}/bootdir && ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} \ -m 444 * ${DESTDIR}/usr/mdec/) .include <bsd.prog.mk> |