aboutsummaryrefslogtreecommitdiff
path: root/include/rpcsvc/Makefile
diff options
context:
space:
mode:
authorGarrett Wollman <wollman@FreeBSD.org>1995-06-29 19:45:46 +0000
committerGarrett Wollman <wollman@FreeBSD.org>1995-06-29 19:45:46 +0000
commit827d45ce27c96f67548bb01025083fca16b57bee (patch)
tree7b70b412ebdea1ef9f4ecfadd8d4765d0daa9d08 /include/rpcsvc/Makefile
parent5a497e0c63604dcdb25fa918821471c2806232ba (diff)
downloadsrc-827d45ce27c96f67548bb01025083fca16b57bee.tar.gz
src-827d45ce27c96f67548bb01025083fca16b57bee.zip
Fix a bug I didn't manage to trigger until after committing previous
fix to header installation.
Notes
Notes: svn path=/head/; revision=9375
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 27dc97253aae..01dfea319d6c 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.3 1995/03/18 07:04:23 rgrimes Exp $
+# $Id: Makefile,v 1.4 1995/06/29 19:43:00 wollman Exp $
.SUFFIXES: .x
@@ -23,13 +23,13 @@ install: all
.for i in $(EVERYTHING)
@cd ${.CURDIR}; cmp -s $i $(RPCDIR)/$i || \
(install -c -m ${BINMODE} -o ${BINOWN} -g ${BINGRP} \
- ${.CURDIR}/$i ${RPCDIR}; \
+ $i ${RPCDIR}; \
$(ECHO) $i)
.endfor
.for i in $(HDRS)
@cmp -s $i $(RPCDIR)/$i || \
(install -c -m ${BINMODE} -o ${BINOWN} -g ${BINGRP} \
- ${.CURDIR}/$i ${RPCDIR}; \
+ $i ${RPCDIR}; \
$(ECHO) $i)
.endfor