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