summaryrefslogtreecommitdiffstats
path: root/bugscan.rb
diff options
context:
space:
mode:
Diffstat (limited to 'bugscan.rb')
-rw-r--r--bugscan.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/bugscan.rb b/bugscan.rb
index 3421e28..2bbba0f 100644
--- a/bugscan.rb
+++ b/bugscan.rb
@@ -10,7 +10,6 @@ $bug_matches = {
"Empty %files file.*\\.debugfiles.list" => "err_debuglist", # e.g. kon2
"Empty %files file.*\\.lang" => "err_findlang",
"Installed \\(but unpackaged\\) file\\(s\\) found" => "err_unpackagedfile", # e.g. flvtool2
- "^ File not found:" => "err_packagedfilemissing",
"SyntaxError: Missing parentheses in call to 'print'." => "err_python3", # e.g. pyzy
"ERROR: ambiguous python shebang" => "err_python3", # e.g. scid
"%py2_build" => "err_python3", # e.g. obapps
@@ -29,7 +28,9 @@ $bug_matches = {
"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",
+ "error: File not found:.*.egg-info" => "err_egginfomissing", # e.g. sword
# The following have more specific matches above
+ "^ File not found:" => "err_packagedfilemissing",
"multiple definition of" => "err_multipledefinition",
}