diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2022-08-07 08:12:04 -0700 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2022-08-07 08:12:04 -0700 |
commit | 18620c7b79192454db6aeca0ce5858d7d1ec11fe (patch) | |
tree | f186dd498c5f0c7f4c77383fea2afaab197b407d | |
parent | 86891e680902635c0cc0b44f275572899de6f0d2 (diff) | |
download | autobuild-18620c7b79192454db6aeca0ce5858d7d1ec11fe.tar autobuild-18620c7b79192454db6aeca0ce5858d7d1ec11fe.tar.gz autobuild-18620c7b79192454db6aeca0ce5858d7d1ec11fe.tar.bz2 autobuild-18620c7b79192454db6aeca0ce5858d7d1ec11fe.tar.xz autobuild-18620c7b79192454db6aeca0ce5858d7d1ec11fe.zip |
Add err_mountcompat
This is due a glibc incompatibility with Linux system headers.
-rw-r--r-- | bugscan.rb | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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", } |