diff options
author | peter <peter@FreeBSD.org> | 1996-08-30 03:12:16 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-08-30 03:12:16 +0000 |
commit | f50869a1163cd0061c3e98b990e5e8997fc543e6 (patch) | |
tree | bc6c1209cf450a0663c24af5165fdfc553d9f6bd | |
parent | 6143fcd95bdec4d8ffdfa777c8a8e1bb7e87ede8 (diff) | |
download | FreeBSD-src-f50869a1163cd0061c3e98b990e5e8997fc543e6.zip FreeBSD-src-f50869a1163cd0061c3e98b990e5e8997fc543e6.tar.gz |
cmp -s || install -c -> install -C
-rw-r--r-- | gnu/include/Makefile | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/gnu/include/Makefile b/gnu/include/Makefile index aa06524..4a8477e 100644 --- a/gnu/include/Makefile +++ b/gnu/include/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1994/11/08 00:47:02 ache Exp $ +# $Id: Makefile,v 1.2 1995/08/06 12:22:38 bde Exp $ # all depend lint tags: @@ -6,11 +6,10 @@ FILES= values.h NOOBJ= noobj beforeinstall: - @${ECHO} installing ${FILES} - @-for i in ${FILES}; do \ - cmp -s $$i ${DESTDIR}/usr/include/$$i || \ - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 $$i \ - ${DESTDIR}/usr/include/$$i; \ - done +.for i in ${FILES} + cd ${.CURDIR} ; \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 $i \ + ${DESTDIR}/usr/include/$i +.endfor .include <bsd.prog.mk> |