aboutsummaryrefslogtreecommitdiff
path: root/include/rpcsvc/Makefile
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1995-08-06 12:24:38 +0000
committerBruce Evans <bde@FreeBSD.org>1995-08-06 12:24:38 +0000
commit48cfb668fc9f2257b8955348b6c448f331db538c (patch)
tree654fdd1b68d3f3b66fa5852885ab296a298270bf /include/rpcsvc/Makefile
parentd63abe4172ac583e5d2cf2086fe66a44c747b126 (diff)
downloadsrc-48cfb668fc9f2257b8955348b6c448f331db538c.tar.gz
src-48cfb668fc9f2257b8955348b6c448f331db538c.zip
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.
Notes
Notes: svn path=/head/; revision=9970
Diffstat (limited to 'include/rpcsvc/Makefile')
-rw-r--r--include/rpcsvc/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/rpcsvc/Makefile b/include/rpcsvc/Makefile
index 01dfea319d6c..5607e35b42cd 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