* QA Notice: 'automake' called by _automake_version: app-shells/dash-0.5.7.4 * Use autotools.eclass instead of calling 'automake' directly. I think this problem was introduced in version 1.160 of autotools.eclass. http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/eclass/autotools.eclass?r1=1.159&r2=1.160
It looks like ebuild.sh has a hard-coded whitelist of functions where automake may be called.
*** Bug 502154 has been marked as a duplicate of this bug. ***
Created attachment 371084 [details, diff] Add _automake_version to the whitelist Here's the obvious fix. It would be nice if we did not have to hard-code that list in ebuild.sh, however.
I was impatient and pushed it as: http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/eclass/autotools.eclass?r1=1.160&r2=1.161 Maybe it's worth keeping single function-wrapper that exempts from warnings? Like 'blessed-autocall() { "@" }' and stop maintaining that large list? Otherwise it's a bit too tied to portage version.
*** Bug 503284 has been marked as a duplicate of this bug. ***
(In reply to Sergei Trofimovich from comment #4) unfortunately your change broke the function entirely. it needed to parse the output, but the wrapper function swallows all the output (by design).
(In reply to SpanKY from comment #6) > (In reply to Sergei Trofimovich from comment #4) > > unfortunately your change broke the function entirely. it needed to parse > the output, but the wrapper function swallows all the output (by design). Ugh, apologies for breakage. Thanks for fixing it!