diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-12-08 15:17:20 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-12-08 15:17:20 +0000 |
commit | 5275bb48665b4e748c48fc5a5a804ae0549f0e4a (patch) | |
tree | a5ed4e486e44832f185b423859f5ac0fbfe03a2c /libexec/makewhatis | |
parent | 92f9d347b16f71e6f70d404ed02486584fa35d37 (diff) |
install -> ${INSTALL}, -c -> ${COPY}
Diffstat (limited to 'libexec/makewhatis')
-rw-r--r-- | libexec/makewhatis/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/makewhatis/Makefile b/libexec/makewhatis/Makefile index 39bf5458c73..df64d5d106f 100644 --- a/libexec/makewhatis/Makefile +++ b/libexec/makewhatis/Makefile @@ -1,11 +1,11 @@ -# $Id: Makefile,v 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 <bsd.prog.mk> |