commit: 307c855dc6d7842098fae8738a7a5228670a71f6 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Wed Mar 31 23:51:35 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Apr 11 20:59:54 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=307c855d
autotools.eclass: add explicit GNU awk dependency autotools_check_macro_val specifically requires GNU awk (sys-apps/gawk) rather than any awk (virtual/awk). Closes: https://bugs.gentoo.org/584254 Signed-off-by: Sam James <sam <AT> gentoo.org> eclass/autotools.eclass | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass index 8cf09f08d2f..ab62584a5b7 100644 --- a/eclass/autotools.eclass +++ b/eclass/autotools.eclass @@ -125,7 +125,9 @@ fi # versions in *DEPEND format. AUTOTOOLS_DEPEND="${_automake_atom} ${_autoconf_atom} - ${_libtool_atom}" + ${_libtool_atom} + sys-apps/gawk +" RDEPEND="" # @ECLASS-VARIABLE: AUTOTOOLS_AUTO_DEPEND
