From d41018311abf91899645b8f3160db540abdb5398 Mon Sep 17 00:00:00 2001 From: Joshua Watt Date: Wed, 1 Sep 2021 08:44:56 -0500 Subject: classes/create-spdx: Comment out placeholder license warning We don't want this warning causing problems on the AB, so leave it comment out for now Signed-off-by: Joshua Watt Signed-off-by: Richard Purdie --- meta/classes/create-spdx.bbclass | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/classes/create-spdx.bbclass b/meta/classes/create-spdx.bbclass index 6af4181087..a590ab596a 100644 --- a/meta/classes/create-spdx.bbclass +++ b/meta/classes/create-spdx.bbclass @@ -88,7 +88,8 @@ def convert_license_to_spdx(lic, document, d): if l == "PD": add_extracted_license(spdx_license, l, "Software released to the public domain") elif add_extracted_license(spdx_license, l, "This software is licensed under the %s license" % l): - bb.warn("No SPDX License found for %s. Creating a place holder" % l) + pass + #bb.warn("No SPDX License found for %s. Creating a place holder" % l) return spdx_license -- cgit 1.2.3-korg