]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core.git/commitdiff
classes/create-spdx: Comment out placeholder license warning
authorJoshua Watt <JPEWhacker@gmail.com>
Wed, 1 Sep 2021 13:44:56 +0000 (08:44 -0500)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 3 Sep 2021 08:03:36 +0000 (09:03 +0100)
We don't want this warning causing problems on the AB, so leave it
comment out for now

Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/create-spdx.bbclass

index 6af418108707546da44f0138f7a1ff217791f082..a590ab596accaa57630d74d09d092940d0efa816 100644 (file)
@@ -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