diff options
author | bde <bde@FreeBSD.org> | 1998-09-20 21:38:12 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-09-20 21:38:12 +0000 |
commit | c29de40a9511c79138e5a4d16ffdc9229ea2976c (patch) | |
tree | 1c73b4ef46d2152508d72769c8b74cb99c1cb292 | |
parent | 449f0bccf805179d228838fd86a2b3c4eb6fb3dd (diff) | |
download | FreeBSD-src-c29de40a9511c79138e5a4d16ffdc9229ea2976c.zip FreeBSD-src-c29de40a9511c79138e5a4d16ffdc9229ea2976c.tar.gz |
Install using ${INSTALL}, not using `install'.
-rw-r--r-- | usr.bin/units/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/units/Makefile b/usr.bin/units/Makefile index b414356..5f4f805 100644 --- a/usr.bin/units/Makefile +++ b/usr.bin/units/Makefile @@ -1,9 +1,9 @@ -# $Id$ +# $Id: Makefile,v 1.3 1997/02/22 19:57:30 peter Exp $ PROG= units beforeinstall: - install -c -o ${BINOWN} -g ${BINGRP} -m 444 \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \ ${.CURDIR}/units.lib ${DESTDIR}/usr/share/misc .include <bsd.prog.mk> |