diff options
author | wollman <wollman@FreeBSD.org> | 1994-08-10 04:25:19 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1994-08-10 04:25:19 +0000 |
commit | 4daa7a8637bba66813fb55270e48c88fb2dfc9b3 (patch) | |
tree | d26c1c0543a4ac8d61c793042a595ee0cde4f1ec /lib/librpcsvc/Makefile | |
parent | 4131cde3349b22c13a0ed8b8568f3630b0102a4e (diff) | |
download | FreeBSD-src-4daa7a8637bba66813fb55270e48c88fb2dfc9b3.zip FreeBSD-src-4daa7a8637bba66813fb55270e48c88fb2dfc9b3.tar.gz |
Eliminate non-fatal error message so Jordan doesn't get confused.
Diffstat (limited to 'lib/librpcsvc/Makefile')
-rw-r--r-- | lib/librpcsvc/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/librpcsvc/Makefile b/lib/librpcsvc/Makefile index 4a251c8..ffcf053 100644 --- a/lib/librpcsvc/Makefile +++ b/lib/librpcsvc/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.10 (Berkeley) 6/24/90 -# $Id: Makefile,v 1.1 1994/08/07 23:21:08 wollman Exp $ +# $Id: Makefile,v 1.1 1994/08/09 16:56:28 wollman Exp $ .PATH: ${DESTDIR}/usr/include/rpcsvc @@ -25,7 +25,12 @@ NOMAN= noman .x_xdr.c: @echo generating $@... - @PWD=`pwd` ; cd ${.CURDIR} ; if cmp -s ${.IMPSRC} ${*F}.x > /dev/null; then :; else cp -f ${.IMPSRC} $$PWD/${*F}.x ; fi + @PWD=`pwd` ; cd ${.CURDIR} ; \ + if cmp -s ${.IMPSRC} ${*F}.x > /dev/null 2>/dev/null; then \ + true; \ + else \ + cp -f ${.IMPSRC} $$PWD/${*F}.x ; \ + fi @${RPCCOM} -c ${*F}.x -o ${.TARGET} OBJS+= ${RPCSRCS:R:S/$/_xdr.o/g} |