summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1996-08-30 03:12:16 +0000
committerPeter Wemm <peter@FreeBSD.org>1996-08-30 03:12:16 +0000
commitf5c123203e758a145f5c1d90eee28b56ff374783 (patch)
treebc6c1209cf450a0663c24af5165fdfc553d9f6bd
parent98e01bb564a5005e0c467acb529d451aaed4cb57 (diff)
Notes
-rw-r--r--gnu/include/Makefile13
1 files changed, 6 insertions, 7 deletions
diff --git a/gnu/include/Makefile b/gnu/include/Makefile
index aa06524cf445..4a8477e9aa4e 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>