diff options
author | jlam <jlam@pkgsrc.org> | 2005-05-09 00:13:03 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-05-09 00:13:03 +0000 |
commit | 327eb350108a657882cf93d83b881e2d4cf84057 (patch) | |
tree | 86037393d8ad4a91803e826d87eb6e0cbb37f8d8 /mk/tools/rpcgen.mk | |
parent | 4d8bf06705986a3846104addbc2e2d58182c77e9 (diff) | |
download | pkgsrc-327eb350108a657882cf93d83b881e2d4cf84057.tar.gz |
Rename TOOLS_ARGS.* to TOOLS_REAL_ARGS.* to follow naming convention for
other TOOLS_* variables relating to the real command executed.
Diffstat (limited to 'mk/tools/rpcgen.mk')
-rw-r--r-- | mk/tools/rpcgen.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/tools/rpcgen.mk b/mk/tools/rpcgen.mk index 8842f1ca73a..342bc693403 100644 --- a/mk/tools/rpcgen.mk +++ b/mk/tools/rpcgen.mk @@ -1,4 +1,4 @@ -# $NetBSD: rpcgen.mk,v 1.2 2005/04/24 04:34:34 jlam Exp $ +# $NetBSD: rpcgen.mk,v 1.3 2005/05/09 00:13:03 jlam Exp $ # Create an rpcgen script that correctly sets the CPP environment # variable to a stat(2)able path to a C preprocessor, then invokes @@ -17,10 +17,10 @@ TOOLS_REAL_CMD.rpcgen?= ${FALSE} .endif TOOLS_CMD.rpcgen= ${TOOLS_DIR}/bin/rpcgen .if ${OPSYS} == "NetBSD" -TOOLS_ARGS.rpcgen?= -b +TOOLS_REAL_ARGS.rpcgen?= -b .endif TOOLS_REAL_CMDLINE.rpcgen= \ - CPP=${WRAPPER_BINDIR:Q}/cpp ${TOOLS_REAL_CMD.rpcgen} ${TOOLS_ARGS.rpcgen} + CPP=${WRAPPER_BINDIR:Q}/cpp ${TOOLS_REAL_CMD.rpcgen} ${TOOLS_REAL_ARGS.rpcgen} # Make ${RPCGEN} call the "rpcgen" through the PATH, which should find # the rpcgen tool wrapper. |