summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bugscan.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/bugscan.rb b/bugscan.rb
index cd04185..d117a8c 100644
--- a/bugscan.rb
+++ b/bugscan.rb
@@ -1,4 +1,5 @@
# Regexes to match against the build log
+# Update https://wiki.mageia.org/en/Autobuild_errors when a new tag is added
$bug_matches = {
"com\\.sun\\.tools\\.javac\\.Main is not on the classpath" => "err_javacmissing", # e.g. gnu-getopt
"Unable to find a javac compiler" => "err_javacmissing", # e.g. fmj
@@ -26,4 +27,5 @@ $bug_matches = {
"'check-rpaths' detected a broken RPATH OR RUNPATH" => "err_rpath", # e.g. lame
"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
}