diff options
author | 1996-12-08 15:17:19 +0000 | |
---|---|---|
committer | 1996-12-08 15:17:19 +0000 | |
commit | faca1c99b218513d973bd10773f61dd879f0ece5 (patch) | |
tree | 7079b34488f1b466bbf9dabc90c8e7bb89525068 /lib/libutil | |
parent | Merge to NetBSD 961207 (diff) | |
download | wireguard-openbsd-faca1c99b218513d973bd10773f61dd879f0ece5.tar.xz wireguard-openbsd-faca1c99b218513d973bd10773f61dd879f0ece5.zip |
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"; \ |