Module Name: src Committed By: christos Date: Sun Dec 15 06:10:33 UTC 2013
Modified Files: src/usr.sbin/rpc.pcnfsd: Makefile.clnt Log Message: Add extra rpcgen flags. To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/usr.sbin/rpc.pcnfsd/Makefile.clnt Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/usr.sbin/rpc.pcnfsd/Makefile.clnt diff -u src/usr.sbin/rpc.pcnfsd/Makefile.clnt:1.13 src/usr.sbin/rpc.pcnfsd/Makefile.clnt:1.14 --- src/usr.sbin/rpc.pcnfsd/Makefile.clnt:1.13 Fri Aug 1 13:04:07 2003 +++ src/usr.sbin/rpc.pcnfsd/Makefile.clnt Sun Dec 15 01:10:33 2013 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.clnt,v 1.13 2003/08/01 17:04:07 lukem Exp $ +# $NetBSD: Makefile.clnt,v 1.14 2013/12/15 06:10:33 christos Exp $ # This Makefile builds a client used for testing. @@ -28,13 +28,13 @@ getrpcgen: @set -- X `type ${TOOL_RPCGEN}` && shift $$(($$# - 1)) && echo "$$1" pcnfsd_clnt.c: pcnfsd.x ${XRPCGEN} - ${TOOL_RPCGEN} -l ${.CURDIR}/pcnfsd.x -o $@ + ${TOOL_RPCGEN} ${RPCGEN_FLAGS} -l ${.CURDIR}/pcnfsd.x -o $@ pcnfsd_xdr.c: pcnfsd.x ${XRPCGEN} - ${TOOL_RPCGEN} -c ${.CURDIR}/pcnfsd.x -o $@ + ${TOOL_RPCGEN} ${RPCGEN_FLAGS} -c ${.CURDIR}/pcnfsd.x -o $@ pcnfsd.h: pcnfsd.x ${XRPCGEN} - ${TOOL_RPCGEN} -h ${.CURDIR}/pcnfsd.x -o $@ + ${TOOL_RPCGEN} ${RPCGEN_FLAGS} -h ${.CURDIR}/pcnfsd.x -o $@ DPSRCS+= pcnfsd.h CLEANFILES+= pcnfsd_clnt.c pcnfsd_xdr.c pcnfsd.h