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 /usr.bin/mkdep | |
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 'usr.bin/mkdep')
-rw-r--r-- | usr.bin/mkdep/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mkdep/Makefile b/usr.bin/mkdep/Makefile index 94c5d65..4329dc0 100644 --- a/usr.bin/mkdep/Makefile +++ b/usr.bin/mkdep/Makefile @@ -5,11 +5,11 @@ MAN1= mkdep.1 .if (${MACHINE} == "hp300" || ${MACHINE} == "i386" || \ ${MACHINE} == "mips" || ${MACHINE} == "sparc") beforeinstall: - install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${.CURDIR}/mkdep.gcc.sh ${DESTDIR}/usr/bin/mkdep .else beforeinstall: - install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${.CURDIR}/mkdep.sh ${DESTDIR}/usr/bin/mkdep .endif |