diff options
author | jlam <jlam@pkgsrc.org> | 2005-05-09 02:43:06 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-05-09 02:43:06 +0000 |
commit | 1e0343b80bb7462092d5fb2b177a8487a3839b59 (patch) | |
tree | 52832d7f98eba0e0312a864036121821c87442bd | |
parent | 525b3f42cee97cbc0220106d7c6faccdb7447807 (diff) | |
download | pkgsrc-1e0343b80bb7462092d5fb2b177a8487a3839b59.tar.gz |
Remove redundant variable definitions that simply match their defaults.
-rw-r--r-- | mk/tools/bsd.tools.mk | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mk/tools/bsd.tools.mk b/mk/tools/bsd.tools.mk index 7d0dc633417..0f4e6a589bc 100644 --- a/mk/tools/bsd.tools.mk +++ b/mk/tools/bsd.tools.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.tools.mk,v 1.15 2005/05/09 01:11:58 jlam Exp $ +# $NetBSD: bsd.tools.mk,v 1.16 2005/05/09 02:43:06 jlam Exp $ # # This Makefile fragment creates tools under ${TOOLS_DIR} that are # found before similarly-named tools in the system path. @@ -82,14 +82,12 @@ USE_TOOLS?= # empty .for _t_ in ${TOOLS_NOOP} TOOLS_CREATE+= ${_t_} -TOOLS_CMD.${_t_}?= ${TOOLS_DIR}/bin/${_t_} TOOLS_REAL_CMDLINE.${_t_}?= exit 0 .endfor .undef _t_ .for _t_ in ${TOOLS_BROKEN} TOOLS_CREATE+= ${_t_} -TOOLS_CMD.${_t_}?= ${TOOLS_DIR}/bin/${_t_} TOOLS_REAL_CMDLINE.${_t_}?= exit 1 .endfor .undef _t_ |