From faca1c99b218513d973bd10773f61dd879f0ece5 Mon Sep 17 00:00:00 2001 From: downsj Date: Sun, 8 Dec 1996 15:17:19 +0000 Subject: [PATCH] install -> ${INSTALL}, -c -> ${COPY} --- lib/csu/c++/Makefile | 4 ++-- lib/csu/i386/Makefile | 4 ++-- lib/csu/m68k/Makefile | 4 ++-- lib/csu/mips/Makefile | 4 ++-- lib/csu/ns32k/Makefile | 4 ++-- lib/csu/sparc/Makefile | 4 ++-- lib/csu/vax/Makefile | 4 ++-- lib/libc/Makefile | 4 ++-- lib/libcom_err/Makefile | 4 ++-- lib/libcompat/Makefile | 4 ++-- lib/libcurses/Makefile | 6 +++--- lib/libedit/Makefile | 2 +- lib/libform/Makefile | 2 +- lib/libmenu/Makefile | 2 +- lib/libocurses/Makefile | 2 +- lib/libpanel/Makefile | 2 +- lib/libpcap/Makefile | 4 ++-- lib/librpcsvc/Makefile | 8 ++++---- lib/libskey/Makefile | 4 ++-- lib/libss/Makefile | 4 ++-- lib/libtermlib/Makefile | 4 ++-- lib/libutil/Makefile | 4 ++-- lib/libz/Makefile | 4 ++-- libexec/makewhatis/Makefile | 6 +++--- 24 files changed, 47 insertions(+), 47 deletions(-) diff --git a/lib/csu/c++/Makefile b/lib/csu/c++/Makefile index 7a0c8ce35ab..8578af4a618 100644 --- a/lib/csu/c++/Makefile +++ b/lib/csu/c++/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.2 1996/03/05 07:55:33 niklas Exp $ +# $OpenBSD: Makefile,v 1.3 1996/12/08 15:22:18 downsj Exp $ CFLAGS+= -DLIBC_SCCS .if !defined(NOPIC) @@ -14,7 +14,7 @@ c++rt0.o: c++rt0.c @mv a.out ${.TARGET} install: - install ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \ ${DESTDIR}/usr/lib .include diff --git a/lib/csu/i386/Makefile b/lib/csu/i386/Makefile index e3ff2c98ba5..76e6e1aa75b 100644 --- a/lib/csu/i386/Makefile +++ b/lib/csu/i386/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.5 (Berkeley) 5/21/91 -# $Id: Makefile,v 1.1.1.1 1995/10/18 08:41:17 deraadt Exp $ +# $Id: Makefile,v 1.2 1996/12/08 15:22:19 downsj Exp $ CFLAGS+= -DLIBC_SCCS -I${.CURDIR}/.. OBJS= crt0.o gcrt0.o scrt0.o @@ -26,7 +26,7 @@ scrt0.o: ${SRCS} @rm -f ${.TARGET}.o install: - install ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \ ${DESTDIR}/usr/lib .if make(depend) diff --git a/lib/csu/m68k/Makefile b/lib/csu/m68k/Makefile index fe87d8659cf..87426c39ba5 100644 --- a/lib/csu/m68k/Makefile +++ b/lib/csu/m68k/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.5 (Berkeley) 5/21/91 -# $Id: Makefile,v 1.1.1.1 1995/10/18 08:41:18 deraadt Exp $ +# $Id: Makefile,v 1.2 1996/12/08 15:22:20 downsj Exp $ CFLAGS+= -DLIBC_SCCS -I${.CURDIR}/.. OBJS= crt0.o gcrt0.o scrt0.o @@ -26,7 +26,7 @@ scrt0.o: ${SRCS} @rm -f ${.TARGET}.o install: - install ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \ ${DESTDIR}/usr/lib .if make(depend) diff --git a/lib/csu/mips/Makefile b/lib/csu/mips/Makefile index 48e6d8c6855..095e3a84a42 100644 --- a/lib/csu/mips/Makefile +++ b/lib/csu/mips/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 8.1 (Berkeley) 6/1/93 -# $Id: Makefile,v 1.6 1996/09/02 11:29:09 pefo Exp $ +# $Id: Makefile,v 1.7 1996/12/08 15:22:21 downsj Exp $ CFLAGS+= -DLIBC_SCCS -I${.CURDIR} OBJS= crt0.o gcrt0.o scrt0.o crtn.o @@ -28,7 +28,7 @@ scrt0.o: ${SRCS} ${DEPS} @rm -f ${.TARGET}.o install: - install ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \ ${DESTDIR}/usr/lib depend lint tags: diff --git a/lib/csu/ns32k/Makefile b/lib/csu/ns32k/Makefile index fe87d8659cf..61db62a9e3c 100644 --- a/lib/csu/ns32k/Makefile +++ b/lib/csu/ns32k/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.5 (Berkeley) 5/21/91 -# $Id: Makefile,v 1.1.1.1 1995/10/18 08:41:18 deraadt Exp $ +# $Id: Makefile,v 1.2 1996/12/08 15:22:22 downsj Exp $ CFLAGS+= -DLIBC_SCCS -I${.CURDIR}/.. OBJS= crt0.o gcrt0.o scrt0.o @@ -26,7 +26,7 @@ scrt0.o: ${SRCS} @rm -f ${.TARGET}.o install: - install ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \ ${DESTDIR}/usr/lib .if make(depend) diff --git a/lib/csu/sparc/Makefile b/lib/csu/sparc/Makefile index fe87d8659cf..61db62a9e3c 100644 --- a/lib/csu/sparc/Makefile +++ b/lib/csu/sparc/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.5 (Berkeley) 5/21/91 -# $Id: Makefile,v 1.1.1.1 1995/10/18 08:41:18 deraadt Exp $ +# $Id: Makefile,v 1.2 1996/12/08 15:22:22 downsj Exp $ CFLAGS+= -DLIBC_SCCS -I${.CURDIR}/.. OBJS= crt0.o gcrt0.o scrt0.o @@ -26,7 +26,7 @@ scrt0.o: ${SRCS} @rm -f ${.TARGET}.o install: - install ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \ ${DESTDIR}/usr/lib .if make(depend) diff --git a/lib/csu/vax/Makefile b/lib/csu/vax/Makefile index a107a7b6b45..d5794c46299 100644 --- a/lib/csu/vax/Makefile +++ b/lib/csu/vax/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.6 (Berkeley) 5/22/91 -# $Id: Makefile,v 1.1 1995/11/01 17:38:00 deraadt Exp $ +# $Id: Makefile,v 1.2 1996/12/08 15:22:23 downsj Exp $ CFLAGS+= -DLIBC_SCCS -I${.CURDIR}/.. OBJS= crt0.o gcrt0.o scrt0.o @@ -23,7 +23,7 @@ scrt0.o: crt0.c mv a.out ${.TARGET} install: - install ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \ ${DESTDIR}/usr/lib depend lint tags: diff --git a/lib/libc/Makefile b/lib/libc/Makefile index b8eddc167f7..54fb044282b 100644 --- a/lib/libc/Makefile +++ b/lib/libc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.10 1996/09/30 05:32:42 millert Exp $ +# $OpenBSD: Makefile,v 1.11 1996/12/08 15:22:24 downsj Exp $ # # All library objects contain sccsid strings by default; they may be # excluded as a space-saving measure. To produce a library that does @@ -101,7 +101,7 @@ tags: ${SRCS} >> tags; sort -o tags tags beforeinstall: - install -c -o ${BINOWN} -g ${BINGRP} -m 444 tags \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 tags \ ${DESTDIR}/var/db/libc.tags .include diff --git a/lib/libcom_err/Makefile b/lib/libcom_err/Makefile index 1dc2e96be56..2625f59a631 100644 --- a/lib/libcom_err/Makefile +++ b/lib/libcom_err/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 1996/11/11 04:55:02 downsj Exp $ +# $OpenBSD: Makefile,v 1.2 1996/12/08 15:22:25 downsj Exp $ LIB= com_err SRCS= com_err.c error_message.c et_name.c init_et.c @@ -8,7 +8,7 @@ MAN= com_err.3 includes: -cd ${.CURDIR}; cmp -s com_err.h ${DESTDIR}/usr/include/com_err.h > \ /dev/null 2>&1 || \ - install -c -o ${BINOWN} -g ${BINGRP} -m 444 com_err.h \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 com_err.h \ ${DESTDIR}/usr/include/com_err.h .include diff --git a/lib/libcompat/Makefile b/lib/libcompat/Makefile index 63585402513..08f958844ec 100644 --- a/lib/libcompat/Makefile +++ b/lib/libcompat/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 1996/08/21 02:31:17 downsj Exp $ +# $OpenBSD: Makefile,v 1.4 1996/12/08 15:22:25 downsj Exp $ # $NetBSD: Makefile,v 1.15 1995/09/07 07:17:53 jtc Exp $ LIB= compat @@ -53,7 +53,7 @@ MAN+= regexp.3 includes: @cd ${.CURDIR}; for i in $(HDRS); do \ j="cmp -s $$i ${DESTDIR}/usr/include/`basename $$i` || \ - install -c -o ${BINOWN} -g ${BINGRP} -m 444 $$i \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 $$i \ ${DESTDIR}/usr/include"; \ echo $$j; \ eval "$$j"; \ diff --git a/lib/libcurses/Makefile b/lib/libcurses/Makefile index a6d7da13987..5cc9cfabfd8 100644 --- a/lib/libcurses/Makefile +++ b/lib/libcurses/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.7 1996/06/19 02:48:03 niklas Exp $ +# $OpenBSD: Makefile,v 1.8 1996/12/08 15:22:26 downsj Exp $ LIB= curses SRCS= hardscroll.c lib_acs.c lib_delch.c lib_insstr.c lib_options.c \ @@ -30,10 +30,10 @@ beforedepend: keys.tries includes: @cd ${.CURDIR}; for i in unctrl.h; do \ cmp -s $$i ${DESTDIR}/usr/include/$$i || \ - install -c -m 444 -o $(BINOWN) -g $(BINGRP) $$i \ + ${INSTALL} ${COPY} -m 444 -o $(BINOWN) -g $(BINGRP) $$i \ ${DESTDIR}/usr/include; done @cd ${.CURDIR}; cmp -s curses.h ${DESTDIR}/usr/include/curses.h || \ - install -c -m 444 -o $(BINOWN) -g $(BINGRP) curses.h \ + ${INSTALL} ${COPY} -m 444 -o $(BINOWN) -g $(BINGRP) curses.h \ ${DESTDIR}/usr/include keys.tries: ${.CURDIR}/keys.list ${.CURDIR}/MKkeys.awk diff --git a/lib/libedit/Makefile b/lib/libedit/Makefile index 977b48b7027..c990dffaca0 100644 --- a/lib/libedit/Makefile +++ b/lib/libedit/Makefile @@ -53,7 +53,7 @@ test: libedit.a test.o includes: -cd ${.CURDIR}; cmp -s histedit.h ${DESTDIR}/usr/include/histedit.h > \ /dev/null 2>&1 || \ - install -c -o ${BINOWN} -g ${BINGRP} -m 444 histedit.h \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 histedit.h \ ${DESTDIR}/usr/include .include diff --git a/lib/libform/Makefile b/lib/libform/Makefile index db0f8c451bc..30876a65d53 100644 --- a/lib/libform/Makefile +++ b/lib/libform/Makefile @@ -14,7 +14,7 @@ MAN= form.3 form_field_userptr.3 form_cursor.3 form_field_validation.3 \ includes: @cd ${.CURDIR}; for i in ${HDRS}; do \ cmp -s $$i ${DESTDIR}/usr/include/$$i || \ - install -c -m 444 -o $(BINOWN) -g $(BINGRP) $$i \ + ${INSTALL} ${COPY} -m 444 -o $(BINOWN) -g $(BINGRP) $$i \ ${DESTDIR}/usr/include; done .include diff --git a/lib/libmenu/Makefile b/lib/libmenu/Makefile index 8399412300e..052e2e64045 100644 --- a/lib/libmenu/Makefile +++ b/lib/libmenu/Makefile @@ -12,7 +12,7 @@ MAN= menu.3 menu_driver.3 menu_items.3 menu_opts.3 menu_userptr.3 \ includes: @cd ${.CURDIR}; for i in ${HDRS}; do \ cmp -s $$i ${DESTDIR}/usr/include/$$i || \ - install -c -m 444 -o $(BINOWN) -g $(BINGRP) $$i \ + ${INSTALL} ${COPY} -m 444 -o $(BINOWN) -g $(BINGRP) $$i \ ${DESTDIR}/usr/include; done .include diff --git a/lib/libocurses/Makefile b/lib/libocurses/Makefile index 46ac540346b..0639a5b3584 100644 --- a/lib/libocurses/Makefile +++ b/lib/libocurses/Makefile @@ -14,7 +14,7 @@ MAN= ocurses.3 includes: -cd ${.CURDIR}; cmp -s curses.h ${DESTDIR}/usr/include/ocurses.h > \ /dev/null 2>&1 || \ - install -c -o ${BINOWN} -g ${BINGRP} -m 444 curses.h \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 curses.h \ ${DESTDIR}/usr/include/ocurses.h .if make(install) diff --git a/lib/libpanel/Makefile b/lib/libpanel/Makefile index b7882b9360c..a02e56d3a60 100644 --- a/lib/libpanel/Makefile +++ b/lib/libpanel/Makefile @@ -6,7 +6,7 @@ MAN= panel.3 includes: @cd ${.CURDIR}; for i in ${HDRS}; do \ cmp -s $$i ${DESTDIR}/usr/include/$$i || \ - install -c -m 444 -o $(BINOWN) -g $(BINGRP) $$i \ + ${INSTALL} ${COPY} -m 444 -o $(BINOWN) -g $(BINGRP) $$i \ ${DESTDIR}/usr/include; done .include diff --git a/lib/libpcap/Makefile b/lib/libpcap/Makefile index 613b6e0c1fe..027aded7333 100644 --- a/lib/libpcap/Makefile +++ b/lib/libpcap/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.6 1996/08/03 07:10:32 niklas Exp $ +# $OpenBSD: Makefile,v 1.7 1996/12/08 15:22:30 downsj Exp $ # $NetBSD: Makefile,v 1.3 1996/05/10 21:54:24 cgd Exp $ LIB= pcap @@ -24,7 +24,7 @@ scanner.c: scanner.l grammar.c includes: @cd ${.CURDIR}; for i in $(HDRS); do \ j="cmp -s $$i ${DESTDIR}/usr/include/$$i || \ - install -c -o ${BINOWN} -g ${BINGRP} -m 444 $$i \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 $$i \ ${DESTDIR}/usr/include"; \ echo $$j; \ eval "$$j"; \ diff --git a/lib/librpcsvc/Makefile b/lib/librpcsvc/Makefile index 6111df28faf..18c2bb6c19c 100644 --- a/lib/librpcsvc/Makefile +++ b/lib/librpcsvc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 1996/05/06 21:44:28 deraadt Exp $ +# $OpenBSD: Makefile,v 1.4 1996/12/08 15:22:31 downsj Exp $ RPCSRCS= bootparam_prot.x klm_prot.x mount.x nfs_prot.x\ @@ -16,18 +16,18 @@ all: ${HDRS} beforedepend: ${HDRS} includes: ${HDRS} - install -d -o ${BINOWN} -g ${BINGRP} -m 755 \ + ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \ ${DESTDIR}/usr/include/rpcsvc @echo installing rpc .h and .x files @for i in $(HDRS); do \ cmp -s $$i ${DESTDIR}/usr/include/rpcsvc/$$i || \ - { j="install -c -o ${BINOWN} -g ${BINGRP} -m 444 $$i \ + { j="${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 $$i \ ${DESTDIR}/usr/include/rpcsvc"; \ echo $$j; $$j; } \ done @cd ${.CURDIR}; for i in $(RPCSRCS); do \ cmp -s $(.CURDIR)/$$i ${DESTDIR}/usr/include/rpcsvc/$$i || \ - { j="install -c -o ${BINOWN} -g ${BINGRP} -m 444 $$i \ + { j="${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 $$i \ ${DESTDIR}/usr/include/rpcsvc"; \ echo $$j; $$j; } \ done diff --git a/lib/libskey/Makefile b/lib/libskey/Makefile index 31cbc14f78b..87906ee501d 100644 --- a/lib/libskey/Makefile +++ b/lib/libskey/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.2 1996/09/27 15:38:57 millert Exp $ +# $Id: Makefile,v 1.3 1996/12/08 15:22:32 downsj Exp $ LIB= skey SRCS= skeylogin.c skeysubr.c put.c @@ -8,7 +8,7 @@ HDRS= skey.h includes: @cd ${.CURDIR}; for i in $(HDRS); do \ j="cmp -s $$i ${DESTDIR}/usr/include/`basename $$i` || \ - install -c -o ${BINOWN} -g ${BINGRP} -m 444 $$i \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 $$i \ ${DESTDIR}/usr/include"; \ echo $$j; \ eval "$$j"; \ diff --git a/lib/libss/Makefile b/lib/libss/Makefile index ea3da72390c..862c5be679b 100644 --- a/lib/libss/Makefile +++ b/lib/libss/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 1996/11/17 11:03:40 downsj Exp $ +# $OpenBSD: Makefile,v 1.4 1996/12/08 15:22:32 downsj Exp $ LIB= ss HDRS= ss.h ${.OBJDIR}/ss_err.h @@ -22,7 +22,7 @@ std_rqs.c: ${.CURDIR}/std_rqs.ct includes: ss_err.h @cd ${.CURDIR}; for i in $(HDRS); do \ j="cmp -s $$i ${DESTDIR}/usr/include/ss/$$i || \ - install -c -o ${BINOWN} -g ${BINGRP} -m 444 $$i \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 $$i \ ${DESTDIR}/usr/include/ss"; \ echo $$j; \ eval "$$j"; \ diff --git a/lib/libtermlib/Makefile b/lib/libtermlib/Makefile index 77f7c7e5fd5..56107c9ba0d 100644 --- a/lib/libtermlib/Makefile +++ b/lib/libtermlib/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.4 1996/10/12 03:08:24 tholo Exp $ +# $OpenBSD: Makefile,v 1.5 1996/12/08 15:22:33 downsj Exp $ # # Copyright (c) 1996 SigmaSoft, Th. Lockert # All rights reserved. @@ -68,7 +68,7 @@ binaries.h: mkinfo Capabilities includes: ${HDRS} @for i in ${HDRS}; do \ cmp -s $$i ${DESTDIR}/usr/include/$$i || \ - install -c -o ${BINOWN} -g ${BINGRP} -m 444 $$i \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 $$i \ ${DESTDIR}/usr/include; \ done diff --git a/lib/libutil/Makefile b/lib/libutil/Makefile index 34811926e6d..43336743948 100644 --- a/lib/libutil/Makefile +++ b/lib/libutil/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.9 1996/12/03 01:05:35 downsj Exp $ +# $OpenBSD: Makefile,v 1.10 1996/12/08 15:22:34 downsj Exp $ # $NetBSD: Makefile,v 1.8 1996/05/16 07:03:28 thorpej Exp $ LIB= util @@ -38,7 +38,7 @@ MLINKS+=scsi.3 scsi_debug_output.3 includes: @cd ${.CURDIR}; for i in $(HDRS); do \ j="cmp -s $$i ${DESTDIR}/usr/include/$$i || \ - install -c -o ${BINOWN} -g ${BINGRP} -m 444 $$i \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 $$i \ ${DESTDIR}/usr/include"; \ echo $$j; \ eval "$$j"; \ diff --git a/lib/libz/Makefile b/lib/libz/Makefile index cb1d18f0317..c3625c96dc6 100644 --- a/lib/libz/Makefile +++ b/lib/libz/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.2 1996/07/27 22:26:38 tholo Exp $ +# $OpenBSD: Makefile,v 1.3 1996/12/08 15:22:35 downsj Exp $ LIB= z HDRS= zconf.h zlib.h @@ -10,7 +10,7 @@ NOMAN= noman includes: @cd ${.CURDIR}; for i in $(HDRS); do \ j="cmp -s $$i ${DESTDIR}/usr/include/$$i || \ - install -c -o ${BINOWN} -g ${BINGRP} -m 444 $$i \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 $$i \ ${DESTDIR}/usr/include"; \ echo $$j; \ eval "$$j"; \ diff --git a/libexec/makewhatis/Makefile b/libexec/makewhatis/Makefile index 74c078376e8..df64d5d106f 100644 --- a/libexec/makewhatis/Makefile +++ b/libexec/makewhatis/Makefile @@ -1,11 +1,11 @@ -# $Id: Makefile,v 1.1.1.1 1995/10/18 08:43:19 deraadt Exp $ +# $OpenBSD: Makefile,v 1.2 1996/12/08 15:17:19 downsj Exp $ NOMAN= NOPROG= NOOBJ= afterinstall: - install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ - $(.CURDIR)/makewhatis.sh $(DESTDIR)$(BINDIR)/makewhatis + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + ${.CURDIR}/makewhatis.sh ${DESTDIR}${BINDIR}/makewhatis .include -- 2.20.1