aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2023-02-28 03:10:26 +0000
committerSam James <sam@gentoo.org>2023-02-28 03:10:26 +0000
commiteca90b6049a9ce42ec6868f64abcab403c9f4190 (patch)
tree6a097cbc3536d56ce8538161a196a230c4b5fecc /bin/install-qa-check.d
parentsync: git: add trivial type annotations (diff)
downloadportage-eca90b6049a9ce42ec6868f64abcab403c9f4190.tar.gz
portage-eca90b6049a9ce42ec6868f64abcab403c9f4190.tar.bz2
portage-eca90b6049a9ce42ec6868f64abcab403c9f4190.zip
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@gentoo.org>
Diffstat (limited to 'bin/install-qa-check.d')
-rw-r--r--bin/install-qa-check.d/90config-impl-decl3
1 files changed, 2 insertions, 1 deletions
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