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/libcompat | |
parent | 5275bb48665b4e748c48fc5a5a804ae0549f0e4a (diff) |
install -> ${INSTALL}, -c -> ${COPY}
Diffstat (limited to 'lib/libcompat')
-rw-r--r-- | lib/libcompat/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
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"; \ |