diff options
author | bde <bde@FreeBSD.org> | 1995-08-06 12:24:38 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-08-06 12:24:38 +0000 |
commit | 6579f34131bcc90bb095184a1ab0c491ba0b59b5 (patch) | |
tree | 654fdd1b68d3f3b66fa5852885ab296a298270bf /include | |
parent | d37f4ba3bc52c05290e132d2ec3d080bdb31c9fd (diff) | |
download | FreeBSD-src-6579f34131bcc90bb095184a1ab0c491ba0b59b5.zip FreeBSD-src-6579f34131bcc90bb095184a1ab0c491ba0b59b5.tar.gz |
Change `install' to `${INSTALL}' so that default install flags can be
specified in the top level Makefiles.
Previously I missed dozens of Makefiles that skip the install after
using `cmp -s' to decide that the install isn't necessary.
Diffstat (limited to 'include')
-rw-r--r-- | include/Makefile | 6 | ||||
-rw-r--r-- | include/rpcsvc/Makefile | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/include/Makefile b/include/Makefile index 4a76621..d629675 100644 --- a/include/Makefile +++ b/include/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 8.2 (Berkeley) 1/4/94 -# $Id: Makefile,v 1.27 1995/07/13 10:04:11 rgrimes Exp $ +# $Id: Makefile,v 1.28 1995/08/05 20:24:32 wollman Exp $ # # Doing a make install builds /usr/include # @@ -43,7 +43,7 @@ beforeinstall: ${SHARED} @cd ${.CURDIR}; \ for i in ${FILES}; do \ cmp -s $$i ${DESTDIR}/usr/include/$$i || \ - install -c -o ${BINOWN} -g ${BINGRP} -m 444 $$i \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 $$i \ ${DESTDIR}/usr/include/$$i; \ done .if exists (${.CURDIR}/../sys/conf/newvers.sh) @@ -72,7 +72,7 @@ beforeinstall: ${SHARED} chmod 755 ${DESTDIR}/usr/include/$$i; \ (cd ${.CURDIR}/$$i; for j in *.[ih]; do \ cmp -s $$j ${DESTDIR}/usr/include/$$i/$$j || \ - install -c -o ${BINOWN} -g ${BINGRP} -m 444 $$j \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 $$j \ ${DESTDIR}/usr/include/$$i/$$j; \ done); \ done diff --git a/include/rpcsvc/Makefile b/include/rpcsvc/Makefile index 01dfea3..5607e35 100644 --- a/include/rpcsvc/Makefile +++ b/include/rpcsvc/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 2.3 88/08/11 4.0 RPCSRC -# $Id: Makefile,v 1.4 1995/06/29 19:43:00 wollman Exp $ +# $Id: Makefile,v 1.5 1995/06/29 19:45:46 wollman Exp $ .SUFFIXES: .x @@ -22,13 +22,13 @@ install: all @${ECHO} "Installing RPC service header and definition files" .for i in $(EVERYTHING) @cd ${.CURDIR}; cmp -s $i $(RPCDIR)/$i || \ - (install -c -m ${BINMODE} -o ${BINOWN} -g ${BINGRP} \ + (${INSTALL} -c -m ${BINMODE} -o ${BINOWN} -g ${BINGRP} \ $i ${RPCDIR}; \ $(ECHO) $i) .endfor .for i in $(HDRS) @cmp -s $i $(RPCDIR)/$i || \ - (install -c -m ${BINMODE} -o ${BINOWN} -g ${BINGRP} \ + (${INSTALL} -c -m ${BINMODE} -o ${BINOWN} -g ${BINGRP} \ $i ${RPCDIR}; \ $(ECHO) $i) .endfor |