From 18620c7b79192454db6aeca0ce5858d7d1ec11fe Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Sun, 7 Aug 2022 08:12:04 -0700 Subject: Add err_mountcompat This is due a glibc incompatibility with Linux system headers. --- bugscan.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bugscan.rb b/bugscan.rb index 4f877c0..3421e28 100644 --- a/bugscan.rb +++ b/bugscan.rb @@ -20,7 +20,6 @@ $bug_matches = { "\\[ERROR\\] *Cannot satisfy dependency:" => "err_javadep", # e.g. eclipse-cdt "unresolved dependency: .*: not found" => "err_javadep", # e.g. sbt "-unsafe-string is not available." => "err_ocamlunsafestring", # e.g. mp3packer - "multiple definition of" => "err_multipledefinition", "scalar and rank-1" => "err_fortranscalarandrank", "ISO C\\+\\+17 does not allow dynamic exception specifications" => "err_dynamicexception", # e.g. advancecomp "contains a standard '/usr/lib" => "err_rpath", # e.g. gnokii @@ -28,4 +27,9 @@ $bug_matches = { "Failed to load XMvn configuration" => "err_wmvnconfig", # e.g. junitperf "did you forget to '#include" => "err_stdheaders", # e.g. lnav "format not a string literal and no format arguments" => "err_literalformat", # e.g. bcunit + "multiple definition of .*enum fsconfig_command" => "err_mountcompat", + "redefinition of .*struct mount_attr" => "err_mountcompat", + +# The following have more specific matches above + "multiple definition of" => "err_multipledefinition", } -- cgit v1.2.1