diff options
-rw-r--r-- | bugscan.rb | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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", } |