summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Fandrich <danf@mageia.org>2024-04-01 15:55:01 -0700
committerDan Fandrich <danf@mageia.org>2024-04-01 15:55:01 -0700
commitb46cdc58b2e4139aa7450f4c57aa320762400882 (patch)
tree982124f764d95fec1c31d1c229ff88a2cc7977af
parentb5e768b5f4ed5119cb14b483f3aabbefdc81f227 (diff)
downloadautobuild-master.tar
autobuild-master.tar.gz
autobuild-master.tar.bz2
autobuild-master.tar.xz
autobuild-master.zip
Add err_conflictstrl and err_implicitdeclHEADmaster
-rw-r--r--bugscan.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/bugscan.rb b/bugscan.rb
index bda233a..12fa7d8 100644
--- a/bugscan.rb
+++ b/bugscan.rb
@@ -30,6 +30,9 @@ $bug_matches = {
"redefinition of .*struct mount_attr" => "err_mountcompat",
"error: File not found:.*.egg-info" => "err_egginfomissing", # e.g. sword
"error: '.*' is not a member of 'std'" => "err_stdinclude", # e.g. f3d
+ "implicit declaration of( built-in)? function" => "err_implicitdecl", # e.g. bwbasic
+ "error: conflicting types for 'strl" => "err_conflictstrl", # e.g. crash
+
# The following have more specific matches above
"^ File not found:" => "err_packagedfilemissing",