diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-12-08 15:22:36 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-12-08 15:22:36 +0000 |
commit | 4a7f6335f83e2f8234f181101043a8d369546b00 (patch) | |
tree | 39504325212fe4c666e815aa7ba2f0810e7d9a7b /lib/libutil | |
parent | 5275bb48665b4e748c48fc5a5a804ae0549f0e4a (diff) |
install -> ${INSTALL}, -c -> ${COPY}
Diffstat (limited to 'lib/libutil')
-rw-r--r-- | lib/libutil/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
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"; \ |