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/libss | |
parent | 5275bb48665b4e748c48fc5a5a804ae0549f0e4a (diff) |
install -> ${INSTALL}, -c -> ${COPY}
Diffstat (limited to 'lib/libss')
-rw-r--r-- | lib/libss/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libss/Makefile b/lib/libss/Makefile index ea3da72390c..862c5be679b 100644 --- a/lib/libss/Makefile +++ b/lib/libss/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 1996/11/17 11:03:40 downsj Exp $ +# $OpenBSD: Makefile,v 1.4 1996/12/08 15:22:32 downsj Exp $ LIB= ss HDRS= ss.h ${.OBJDIR}/ss_err.h @@ -22,7 +22,7 @@ std_rqs.c: ${.CURDIR}/std_rqs.ct includes: ss_err.h @cd ${.CURDIR}; for i in $(HDRS); do \ j="cmp -s $$i ${DESTDIR}/usr/include/ss/$$i || \ - install -c -o ${BINOWN} -g ${BINGRP} -m 444 $$i \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 $$i \ ${DESTDIR}/usr/include/ss"; \ echo $$j; \ eval "$$j"; \ |