From b7256da219be0c374707a328b5948ae380ddb584 Mon Sep 17 00:00:00 2001 From: William Douglas Date: Thu, 12 Sep 2024 09:13:16 -0700 Subject: [PATCH] Add new failed pattern Signed-off-by: William Douglas --- autospec/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/autospec/config.py b/autospec/config.py index 2962c470..c4d3e496 100644 --- a/autospec/config.py +++ b/autospec/config.py @@ -320,6 +320,7 @@ def __init__(self, download_path): (r"checking for [a-zA-Z0-9\_\-]+ in (.*?)\.\.\. no", 0, None), (r"checking for library containing (.*)... no", 0, None), (r"checking for perl module ([a-zA-Z:]+) [0-9\.]+... no", 0, 'perl'), + ("checking if (.*) is available...", 0, None), (r"configure: error: (?:pkg-config missing|Unable to locate) (.*)", 0, None), (r"configure: error: ([a-zA-Z0-9]+) (?:is required to build|not found)", 0, None), (r"configure: error: Cannot find (.*)\. Make sure", 0, None),