commit: eca90b6049a9ce42ec6868f64abcab403c9f4190
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 28 03:10:26 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Feb 28 03:10:26 2023 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=eca90b60
install-qa-check.d/90config-impl-decl: prefix warning with 'QA Notice'
... so tinderboxes can pick it up more easily.
Signed-off-by: Sam James <sam <AT> gentoo.org>
bin/install-qa-check.d/90config-impl-decl | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/bin/install-qa-check.d/90config-impl-decl
b/bin/install-qa-check.d/90config-impl-decl
index d1bc0e067..0e758e87d 100644
--- a/bin/install-qa-check.d/90config-impl-decl
+++ b/bin/install-qa-check.d/90config-impl-decl
@@ -92,12 +92,13 @@ config_impl_decl_check() {
# Drop out early if no impl decls found (all the arrays are the same
size)
[[ ${#files[@]} -eq 0 ]] && return
- eqawarn 'Found the following implicit function declarations in
configure logs:'
+ eqawarn 'QA Notice: Found the following implicit function declarations
in configure logs:'
for l in "${!files[@]}"; do
eqawarn " ${files[l]}:${lines[l]} - ${funcs[l]}"
eqatag 'config.log-impl-decl' "line=${lines[l]}"
"func=${funcs[l]}" "${files[l]}"
done
eqawarn 'Check that no features were accidentally disabled.'
+ eqawarn 'See https://wiki.gentoo.org/wiki/Modern_C_porting.'
}
config_impl_decl_check