From: Richard Purdie Date: Sat, 17 Jun 2023 10:50:20 +0000 (+0100) Subject: testimage: Only note missing target directories, don't warn X-Git-Tag: uninative-4.1~394 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52db25c58069c4f440da33daf0474255c9fa870b;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git testimage: Only note missing target directories, don't warn We don't need to see warnings for missing target debug directories. Just show a note in the logs instead. Signed-off-by: Richard Purdie --- diff --git a/meta/classes-recipe/testimage.bbclass b/meta/classes-recipe/testimage.bbclass index 765184c1800..0f02eadf573 100644 --- a/meta/classes-recipe/testimage.bbclass +++ b/meta/classes-recipe/testimage.bbclass @@ -212,7 +212,7 @@ def get_artifacts_list(target, raw_list): raise Exception() result += output.split() except: - bb.warn(f"No file/directory matching path {raw_path}") + bb.note(f"No file/directory matching path {raw_path}") return result