diff options
author | grant <grant@pkgsrc.org> | 2004-10-14 11:41:40 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-10-14 11:41:40 +0000 |
commit | dea72a1fb92b57dd782e02205a18f618c0e2ab8a (patch) | |
tree | 69c8a1420a7057124d2334e3d612ffad83159591 /mk | |
parent | 5e191bc9351a331ef8b941ff4129beae48ab3f73 (diff) | |
download | pkgsrc-dea72a1fb92b57dd782e02205a18f618c0e2ab8a.tar.gz |
make sure _TOOLS_HAS_GNU.<tool> is initialised. from Michael van Elst
in PR pkg/27258.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/tools.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mk/tools.mk b/mk/tools.mk index 78806ec309d..d8f7e232987 100644 --- a/mk/tools.mk +++ b/mk/tools.mk @@ -1,4 +1,4 @@ -# $NetBSD: tools.mk,v 1.44 2004/10/14 09:56:52 grant Exp $ +# $NetBSD: tools.mk,v 1.45 2004/10/14 11:41:40 grant Exp $ # # This Makefile creates a ${TOOLS_DIR} directory and populates the bin # subdir with tools that hide the ones outside of ${TOOLS_DIR}. @@ -174,6 +174,7 @@ _TOOLS_OPSYS_INCOMPAT.yacc+= # empty # Default to not requiring GNU tools. .for _tool_ in ${_TOOLS} +_TOOLS_HAS_GNU.${_tool_}?= NO _TOOLS_NEED_GNU.${_tool_}?= NO _TOOLS_REPLACE.${_tool_}?= NO _TOOLS_OVERRIDE.${_tool_}?= NO |