mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-12 09:58:36 +00:00
Eliminate non-fatal error message so Jordan doesn't get confused.
This commit is contained in:
parent
2e0cc1821d
commit
d1d58d7209
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=2000
@ -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}
|
||||
|
Loading…
Reference in New Issue
Block a user