commit: 19beb75b2c6457ba92338236decef0afece10968
Author: Kerin Millar <kfm <AT> plushkava <DOT> net>
AuthorDate: Fri May 23 04:01:45 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri May 30 07:37:34 2025 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=19beb75b
90gcc-warnings: fix the defective -Wparentheses pattern
Signed-off-by: Kerin Millar <kfm <AT> plushkava.net>
Signed-off-by: Sam James <sam <AT> gentoo.org>
bin/install-qa-check.d/90gcc-warnings | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/install-qa-check.d/90gcc-warnings
b/bin/install-qa-check.d/90gcc-warnings
index c00a33914e..1f51279d97 100644
--- a/bin/install-qa-check.d/90gcc-warnings
+++ b/bin/install-qa-check.d/90gcc-warnings
@@ -29,7 +29,7 @@ gcc_warn_check() {
# 'is used uninitialized in this function' and some more
'.*\[-Wuninitialized\]'
# comparisons like ‘X<=Y<=Z’ do not have their mathematical
meaning
- '.*mathematical meaning*\[-Wparentheses\]'
+ '.*mathematical meaning.*\[-Wparentheses\]'
# null argument where non-null required
'.*\[-Wnonnull\]'