summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorthorpej <thorpej@NetBSD.org>1996-10-18 05:55:26 +0000
committerthorpej <thorpej@NetBSD.org>1996-10-18 05:55:26 +0000
commit150c33e60b6c0a63c93e86e4f4e6cdff35563e4f (patch)
treec20b14080777c147304dccb47e6406cc44124fd7 /usr.bin
parent7f9ea0f2edf68e515fb857dde3206f667e267f29 (diff)
Use ${INSTALL}.
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/bdes/Makefile4
-rw-r--r--usr.bin/calendar/Makefile4
-rw-r--r--usr.bin/compress/Makefile4
-rw-r--r--usr.bin/elfstrip/Makefile4
-rw-r--r--usr.bin/false/Makefile4
-rw-r--r--usr.bin/file/Makefile4
-rw-r--r--usr.bin/gprof/Makefile4
-rw-r--r--usr.bin/id/Makefile6
-rw-r--r--usr.bin/less/less/Makefile4
-rw-r--r--usr.bin/lex/Makefile4
-rw-r--r--usr.bin/locate/locate/Makefile4
-rw-r--r--usr.bin/lorder/Makefile4
-rw-r--r--usr.bin/mail/Makefile6
-rw-r--r--usr.bin/mkdep/Makefile4
-rw-r--r--usr.bin/pagesize/Makefile4
-rw-r--r--usr.bin/shar/Makefile4
-rw-r--r--usr.bin/skey/Makefile8
-rw-r--r--usr.bin/strip/Makefile4
-rw-r--r--usr.bin/tput/Makefile4
-rw-r--r--usr.bin/true/Makefile4
-rw-r--r--usr.bin/units/Makefile4
-rw-r--r--usr.bin/vgrind/Makefile12
-rw-r--r--usr.bin/vi/build/Makefile4
-rw-r--r--usr.bin/which/Makefile4
-rw-r--r--usr.bin/xinstall/Makefile4
-rw-r--r--usr.bin/xlint/llib/Makefile4
-rw-r--r--usr.bin/xlint/xlint/Makefile4
27 files changed, 63 insertions, 61 deletions
diff --git a/usr.bin/bdes/Makefile b/usr.bin/bdes/Makefile
index cd05942573d..c3da522d0da 100644
--- a/usr.bin/bdes/Makefile
+++ b/usr.bin/bdes/Makefile
@@ -1,11 +1,11 @@
-# $NetBSD: Makefile,v 1.1 1995/07/24 04:30:47 cgd Exp $
+# $NetBSD: Makefile,v 1.2 1996/10/18 06:12:01 thorpej Exp $
MAN= bdes.1
SCRIPT= bdes.sh
realinstall:
- install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/${SCRIPT} ${DESTDIR}${BINDIR}/bdes
.include <bsd.prog.mk>
diff --git a/usr.bin/calendar/Makefile b/usr.bin/calendar/Makefile
index 19fea4d4e4a..a4690a4a337 100644
--- a/usr.bin/calendar/Makefile
+++ b/usr.bin/calendar/Makefile
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.6 1995/03/27 08:46:11 glass Exp $
+# $NetBSD: Makefile,v 1.7 1996/10/18 06:12:29 thorpej Exp $
# @(#)Makefile 8.1 (Berkeley) 6/6/93
PROG= calendar
beforeinstall:
- install -c -o ${BINOWN} -g ${BINGRP} -m 444 \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \
${.CURDIR}/calendars/calendar.* ${DESTDIR}/usr/share/calendar
.include <bsd.prog.mk>
diff --git a/usr.bin/compress/Makefile b/usr.bin/compress/Makefile
index 414af5e7e68..a813bbbb49f 100644
--- a/usr.bin/compress/Makefile
+++ b/usr.bin/compress/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.6 1995/03/26 09:44:29 glass Exp $
+# $NetBSD: Makefile,v 1.7 1996/10/18 06:12:59 thorpej Exp $
# @(#)Makefile 8.2 (Berkeley) 4/17/94
PROG= compress
@@ -8,7 +8,7 @@ MLINKS= compress.1 uncompress.1
#MLINKS+=compress.1 zcat.1
#afterinstall:
-# install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+# ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
# ${.CURDIR}/zcat.sh ${DESTDIR}/usr/bin/zcat
.include <bsd.prog.mk>
diff --git a/usr.bin/elfstrip/Makefile b/usr.bin/elfstrip/Makefile
index 260e4938681..1321caf703f 100644
--- a/usr.bin/elfstrip/Makefile
+++ b/usr.bin/elfstrip/Makefile
@@ -1,10 +1,10 @@
# from: @(#)Makefile 5.4 (Berkeley) 5/11/90
-# $Id: Makefile,v 1.2 1996/09/29 22:23:03 jonathan Exp $
+# $Id: Makefile,v 1.3 1996/10/18 06:21:30 thorpej Exp $
PROG= elfstrip
realinstall:
- install -c -o ${BINOWN} -g ${BINGRP} -m 600 ${PROG} \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 600 ${PROG} \
${DESTDIR}${BINDIR}
./${PROG} ${DESTDIR}${BINDIR}/${PROG}
chmod ${BINMODE} ${DESTDIR}${BINDIR}/${PROG}
diff --git a/usr.bin/false/Makefile b/usr.bin/false/Makefile
index 78ff48569d4..da094250d67 100644
--- a/usr.bin/false/Makefile
+++ b/usr.bin/false/Makefile
@@ -1,10 +1,10 @@
# from: @(#)Makefile 5.3 (Berkeley) 5/11/90
-# $Id: Makefile,v 1.6 1994/12/22 13:10:49 cgd Exp $
+# $Id: Makefile,v 1.7 1996/10/18 06:13:43 thorpej Exp $
MAN= false.1
beforeinstall:
- install ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+ ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/false.sh ${DESTDIR}${BINDIR}/false
.include <bsd.prog.mk>
diff --git a/usr.bin/file/Makefile b/usr.bin/file/Makefile
index edeab3e514b..5c5deddeeba 100644
--- a/usr.bin/file/Makefile
+++ b/usr.bin/file/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.7 1996/10/05 20:20:24 christos Exp $
+# $Id: Makefile,v 1.8 1996/10/18 06:14:17 thorpej Exp $
MAGIC= /etc/magic
MAGICOWN= bin
@@ -22,7 +22,7 @@ magic: $(MAGFILES)
cat $(MAGFILES) > $(.TARGET)
afterinstall:
- install ${COPY} -o $(MAGICOWN) -g $(MAGICGRP) -m $(MAGICMODE) magic \
+ ${INSTALL} ${COPY} -o $(MAGICOWN) -g $(MAGICGRP) -m $(MAGICMODE) magic \
$(DESTDIR)$(MAGIC)
.include <bsd.prog.mk>
diff --git a/usr.bin/gprof/Makefile b/usr.bin/gprof/Makefile
index 3a2e9b3a517..da7fcfa8385 100644
--- a/usr.bin/gprof/Makefile
+++ b/usr.bin/gprof/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.14 1995/04/19 07:24:08 cgd Exp $
+# $NetBSD: Makefile,v 1.15 1996/10/18 06:14:49 thorpej Exp $
# @(#)Makefile 8.1 (Berkeley) 6/29/93
PROG= gprof
@@ -7,7 +7,7 @@ SRCS= gprof.c arcs.c dfn.c lookup.c ${MACHINE_ARCH}.c hertz.c \
CFLAGS+= -D${MACHINE_ARCH}
beforeinstall:
- install -c -o ${BINOWN} -g ${BINGRP} -m 444 \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \
${.CURDIR}/gprof.flat ${.CURDIR}/gprof.callg \
${DESTDIR}/usr/share/misc
diff --git a/usr.bin/id/Makefile b/usr.bin/id/Makefile
index 99e7cf6208a..704a352fc4c 100644
--- a/usr.bin/id/Makefile
+++ b/usr.bin/id/Makefile
@@ -1,13 +1,13 @@
# from: @(#)Makefile 8.1 (Berkeley) 6/6/93
-# $Id: Makefile,v 1.4 1994/12/22 12:29:56 cgd Exp $
+# $Id: Makefile,v 1.5 1996/10/18 06:15:20 thorpej Exp $
PROG= id
MAN= id.1 groups.1 whoami.1
afterinstall:
- install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/groups.sh ${DESTDIR}/usr/bin/groups
- install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/whoami.sh ${DESTDIR}/usr/bin/whoami
.include <bsd.prog.mk>
diff --git a/usr.bin/less/less/Makefile b/usr.bin/less/less/Makefile
index a14bbf5a2ca..9e6b394ce14 100644
--- a/usr.bin/less/less/Makefile
+++ b/usr.bin/less/less/Makefile
@@ -1,5 +1,5 @@
# from: @(#)Makefile 5.6 (Berkeley) 3/12/91
-# $Id: Makefile,v 1.1.1.1 1996/01/22 03:14:17 mrg Exp $
+# $Id: Makefile,v 1.2 1996/10/18 06:18:57 thorpej Exp $
.include "../../Makefile.inc"
@@ -16,7 +16,7 @@ MLINKS= less.1 more.1 less.1 page.1
LINKS= ${BINDIR}/less ${BINDIR}/more ${BINDIR}/less ${BINDIR}/page
beforeinstall:
- install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/more.help \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/more.help \
${DESTDIR}/usr/share/misc
.include <bsd.prog.mk>
diff --git a/usr.bin/lex/Makefile b/usr.bin/lex/Makefile
index b4db0d446d6..39286fbf8e2 100644
--- a/usr.bin/lex/Makefile
+++ b/usr.bin/lex/Makefile
@@ -1,5 +1,5 @@
# from: @(#)Makefile 5.4 (Berkeley) 6/24/90
-# $Id: Makefile,v 1.12 1996/04/25 01:23:37 jtc Exp $
+# $Id: Makefile,v 1.13 1996/10/18 06:16:10 thorpej Exp $
#
# By default, flex will be configured to generate 8-bit scanners only if the
# -8 flag is given. If you want it to always generate 8-bit scanners, add
@@ -41,7 +41,7 @@ scan.c: scan.l
scan.o: parse.c
includes:
- install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/FlexLexer.h \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/FlexLexer.h \
${DESTDIR}/usr/include/g++
.include <bsd.prog.mk>
diff --git a/usr.bin/locate/locate/Makefile b/usr.bin/locate/locate/Makefile
index 5e19415489a..3e69061dcaf 100644
--- a/usr.bin/locate/locate/Makefile
+++ b/usr.bin/locate/locate/Makefile
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.3 1994/12/22 06:17:44 jtc Exp $
+# $NetBSD: Makefile,v 1.4 1996/10/18 06:16:41 thorpej Exp $
# @(#)Makefile 8.1 (Berkeley) 6/6/93
PROG= locate
beforeinstall:
- install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/updatedb.csh ${DESTDIR}/usr/libexec/locate.updatedb
.include "../../Makefile.inc"
diff --git a/usr.bin/lorder/Makefile b/usr.bin/lorder/Makefile
index 388e749d159..dea47c16fff 100644
--- a/usr.bin/lorder/Makefile
+++ b/usr.bin/lorder/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.9 1995/12/18 07:59:12 jonathan Exp $
+# $NetBSD: Makefile,v 1.10 1996/10/18 06:17:04 thorpej Exp $
# @(#)Makefile 8.1 (Berkeley) 6/6/93
MAN= lorder.1
@@ -11,7 +11,7 @@ SCRIPT= lorder.sh
.endif
realinstall:
- install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/${SCRIPT} ${DESTDIR}${BINDIR}/lorder
.include <bsd.prog.mk>
diff --git a/usr.bin/mail/Makefile b/usr.bin/mail/Makefile
index e2f2b9aa188..57638f8a8fd 100644
--- a/usr.bin/mail/Makefile
+++ b/usr.bin/mail/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.8 1996/06/08 19:48:09 christos Exp $
+# $NetBSD: Makefile,v 1.9 1996/10/18 06:17:36 thorpej Exp $
# @(#)Makefile 8.2 (Berkeley) 1/25/94
PROG= mail
@@ -11,9 +11,9 @@ LINKS= ${BINDIR}/mail ${BINDIR}/Mail ${BINDIR}/mail ${BINDIR}/mailx
MLINKS= mail.1 Mail.1 mail.1 mailx.1
beforeinstall:
- cd ${.CURDIR}/misc; install -c -o ${BINOWN} -g ${BINGRP} \
+ cd ${.CURDIR}/misc; ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} \
-m 444 ${SFILES} ${DESTDIR}/usr/share/misc
- cd ${.CURDIR}/misc; install -c -o root -g wheel \
+ cd ${.CURDIR}/misc; ${INSTALL} -c -o root -g wheel \
-m 644 ${EFILES} ${DESTDIR}/etc
.if make(install)
diff --git a/usr.bin/mkdep/Makefile b/usr.bin/mkdep/Makefile
index 51b35f6df2b..4fd370fec30 100644
--- a/usr.bin/mkdep/Makefile
+++ b/usr.bin/mkdep/Makefile
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.6 1994/12/23 07:34:55 jtc Exp $
+# $NetBSD: Makefile,v 1.7 1996/10/18 06:18:00 thorpej Exp $
# @(#)Makefile 8.1 (Berkeley) 6/6/93
MAN= mkdep.1
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
.include <bsd.prog.mk>
diff --git a/usr.bin/pagesize/Makefile b/usr.bin/pagesize/Makefile
index 89ef7efee14..dfdaba06eaf 100644
--- a/usr.bin/pagesize/Makefile
+++ b/usr.bin/pagesize/Makefile
@@ -1,12 +1,12 @@
# @(#)Makefile 8.2 (Berkeley) 4/3/94
-# $NetBSD: Makefile,v 1.6 1995/09/05 01:11:10 cgd Exp $
+# $NetBSD: Makefile,v 1.7 1996/10/18 06:18:22 thorpej Exp $
MAN= pagesize.1
SCRIPT= pagesize.sh
realinstall:
- install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/${SCRIPT} ${DESTDIR}${BINDIR}/pagesize
.include <bsd.prog.mk>
diff --git a/usr.bin/shar/Makefile b/usr.bin/shar/Makefile
index 613ef7a9074..0894729d82f 100644
--- a/usr.bin/shar/Makefile
+++ b/usr.bin/shar/Makefile
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.6 1994/12/22 12:30:52 cgd Exp $
+# $NetBSD: Makefile,v 1.7 1996/10/18 06:19:28 thorpej Exp $
# @(#)Makefile 8.1 (Berkeley) 6/6/93
MAN= shar.1
beforeinstall:
- install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/shar.sh ${DESTDIR}/usr/bin/shar
.include <bsd.prog.mk>
diff --git a/usr.bin/skey/Makefile b/usr.bin/skey/Makefile
index c312b7aed3f..3150c0704d9 100644
--- a/usr.bin/skey/Makefile
+++ b/usr.bin/skey/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.6 1996/09/19 19:44:32 thorpej Exp $
+# $NetBSD: Makefile,v 1.7 1996/10/18 06:20:23 thorpej Exp $
PROG= skey
CFLAGS+= -I${.CURDIR}/../../lib/libskey
@@ -7,7 +7,9 @@ DPADD= ${LIBSKEY}
LDADD= -lskey
beforeinstall:
- install -c -m 755 ${.CURDIR}/skeyaudit.sh ${DESTDIR}${BINDIR}/skeyaudit
- install -c -m 755 ${.CURDIR}/skeyinfo.sh ${DESTDIR}${BINDIR}/skeyinfo
+ ${INSTALL} -c -m 755 ${.CURDIR}/skeyaudit.sh \
+ ${DESTDIR}${BINDIR}/skeyaudit
+ ${INSTALL} -c -m 755 ${.CURDIR}/skeyinfo.sh \
+ ${DESTDIR}${BINDIR}/skeyinfo
.include <bsd.prog.mk>
diff --git a/usr.bin/strip/Makefile b/usr.bin/strip/Makefile
index 22347b325c7..cde8e373c86 100644
--- a/usr.bin/strip/Makefile
+++ b/usr.bin/strip/Makefile
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.11 1996/10/08 22:00:18 christos Exp $
+# $NetBSD: Makefile,v 1.12 1996/10/18 06:20:54 thorpej Exp $
# @(#)Makefile 5.4 (Berkeley) 5/11/90
PROG= strip
realinstall:
- install -c -o ${BINOWN} -g ${BINGRP} -m 600 strip \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 600 strip \
${DESTDIR}${BINDIR}
./strip ${DESTDIR}${BINDIR}/strip
chmod ${BINMODE} ${DESTDIR}${BINDIR}/strip
diff --git a/usr.bin/tput/Makefile b/usr.bin/tput/Makefile
index 3e679fff80d..793ba965232 100644
--- a/usr.bin/tput/Makefile
+++ b/usr.bin/tput/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 1994/12/07 08:49:07 jtc Exp $
+# $NetBSD: Makefile,v 1.4 1996/10/18 06:22:06 thorpej Exp $
# @(#)Makefile 8.1 (Berkeley) 6/6/93
PROG= tput
@@ -7,7 +7,7 @@ LDADD= -ltermcap
MLINKS= tput.1 clear.1
beforeinstall:
- install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/clear.sh ${DESTDIR}/usr/bin/clear
.include <bsd.prog.mk>
diff --git a/usr.bin/true/Makefile b/usr.bin/true/Makefile
index 632a0ea2a43..a683171831a 100644
--- a/usr.bin/true/Makefile
+++ b/usr.bin/true/Makefile
@@ -1,10 +1,10 @@
# from: @(#)Makefile 5.3 (Berkeley) 5/11/90
-# $Id: Makefile,v 1.6 1994/12/22 13:10:45 cgd Exp $
+# $Id: Makefile,v 1.7 1996/10/18 06:22:36 thorpej Exp $
MAN= true.1
beforeinstall:
- install ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+ ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/true.sh ${DESTDIR}${BINDIR}/true
.include <bsd.prog.mk>
diff --git a/usr.bin/units/Makefile b/usr.bin/units/Makefile
index c1a9ce6b142..0f356ec2a4a 100644
--- a/usr.bin/units/Makefile
+++ b/usr.bin/units/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.2 1996/04/06 06:00:58 thorpej Exp $
+# $NetBSD: Makefile,v 1.3 1996/10/18 06:23:04 thorpej 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>
diff --git a/usr.bin/vgrind/Makefile b/usr.bin/vgrind/Makefile
index 8e41d6dcf10..2c31fb3d900 100644
--- a/usr.bin/vgrind/Makefile
+++ b/usr.bin/vgrind/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 1994/12/23 21:11:56 pk Exp $
+# $NetBSD: Makefile,v 1.6 1996/10/18 06:23:43 thorpej Exp $
# @(#)Makefile 8.1 (Berkeley) 6/9/93
PROG= vfontedpr
@@ -13,13 +13,13 @@ vgrindefs.src.db: vgrindefs.src
cap_mkdb -f vgrindefs.src ${.CURDIR}/vgrindefs.src
beforeinstall:
- install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/vgrind.sh ${DESTDIR}/usr/bin/vgrind
- install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/vgrindefs.src \
- ${DESTDIR}/usr/share/misc/vgrindefs
- install -c -o ${BINOWN} -g ${BINGRP} -m 444 \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \
+ ${.CURDIR}/vgrindefs.src ${DESTDIR}/usr/share/misc/vgrindefs
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \
vgrindefs.src.db ${DESTDIR}/usr/share/misc/vgrindefs.db
- install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/tmac.vgrind \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/tmac.vgrind \
${DESTDIR}/usr/share/tmac
.include <bsd.prog.mk>
diff --git a/usr.bin/vi/build/Makefile b/usr.bin/vi/build/Makefile
index eb55d8fba9b..3dc148766ab 100644
--- a/usr.bin/vi/build/Makefile
+++ b/usr.bin/vi/build/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 1996/05/26 22:57:49 pk Exp $
+# $NetBSD: Makefile,v 1.4 1996/10/18 06:24:12 thorpej Exp $
#
# from: @(#)Makefile.in 8.56 (Berkeley) 5/18/96
@@ -35,4 +35,4 @@ MLINKS= vi.1 ex.1 vi.1 view.1
cat= dutch english german ru_SU.KOI8-R swedish
datadir= ${DESTDIR}/usr/share
afterinstall:
- (cd ${.CURDIR}/../catalog && install -m $(NONBINMODE) -c $(cat) $(datadir)/vi/catalog )
+ (cd ${.CURDIR}/../catalog && ${INSTALL} -m $(NONBINMODE) -c $(cat) $(datadir)/vi/catalog )
diff --git a/usr.bin/which/Makefile b/usr.bin/which/Makefile
index b949a914e58..3a7ba411515 100644
--- a/usr.bin/which/Makefile
+++ b/usr.bin/which/Makefile
@@ -1,10 +1,10 @@
# from: @(#)Makefile 5.5 (Berkeley) 7/1/90
-# $Id: Makefile,v 1.3 1994/12/22 12:31:36 cgd Exp $
+# $Id: Makefile,v 1.4 1996/10/18 06:24:43 thorpej Exp $
MAN= which.1
beforeinstall:
- install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/which.csh ${DESTDIR}${BINDIR}/which
.include <bsd.prog.mk>
diff --git a/usr.bin/xinstall/Makefile b/usr.bin/xinstall/Makefile
index d4e38b10922..80aa751872c 100644
--- a/usr.bin/xinstall/Makefile
+++ b/usr.bin/xinstall/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 1994/12/22 12:31:39 cgd Exp $
+# $NetBSD: Makefile,v 1.8 1996/10/18 06:25:09 thorpej Exp $
# @(#)Makefile 8.1 (Berkeley) 6/6/93
PROG= xinstall
@@ -7,7 +7,7 @@ MAN= install.1
.PATH: ${.CURDIR}/../../bin/ls
realinstall:
- install ${COPY} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+ ${INSTALL} ${COPY} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${PROG} ${DESTDIR}${BINDIR}/install
.include <bsd.prog.mk>
diff --git a/usr.bin/xlint/llib/Makefile b/usr.bin/xlint/llib/Makefile
index 2e24c3102d4..3756dd73a30 100644
--- a/usr.bin/xlint/llib/Makefile
+++ b/usr.bin/xlint/llib/Makefile
@@ -1,11 +1,11 @@
-# $NetBSD: Makefile,v 1.2 1995/07/03 21:25:05 cgd Exp $
+# $NetBSD: Makefile,v 1.3 1996/10/18 06:25:48 thorpej Exp $
LIBS= llib-lposix.ln llib-lstdc.ln
all: ${LIBS}
install:
- install ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${NONBINMODE} \
+ ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${NONBINMODE} \
${LIBS} ${DESTDIR}${LINTLIBDIR}
clean cleanall:
diff --git a/usr.bin/xlint/xlint/Makefile b/usr.bin/xlint/xlint/Makefile
index 41c833ca15d..bcefd1a4a63 100644
--- a/usr.bin/xlint/xlint/Makefile
+++ b/usr.bin/xlint/xlint/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 1995/07/03 21:25:14 cgd Exp $
+# $NetBSD: Makefile,v 1.3 1996/10/18 06:26:30 thorpej Exp $
.PATH: ${.CURDIR}/../lint1
@@ -9,7 +9,7 @@ MAN= lint.1
CFLAGS+=-I${.CURDIR}/../lint1
realinstall:
- install ${COPY} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+ ${INSTALL} ${COPY} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${PROG} ${DESTDIR}${BINDIR}/lint