]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
base: add newline before LICENSE_FLAGS_DETAILS
authorMichael Opdenacker <michael.opdenacker@bootlin.com>
Fri, 8 Sep 2023 11:55:27 +0000 (13:55 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 11 Sep 2023 15:04:14 +0000 (16:04 +0100)
To improve readability and avoid putting one
inside LICENSE_FLAGS_DETAILS.

Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
meta/classes-global/base.bbclass

index 7c774d250f8c668599ffb69f2e292ef8c3f8514b..f57f9cf827a90132197382fde866eba18debf0eb 100644 (file)
@@ -527,7 +527,7 @@ python () {
                 message = "Has a restricted license '%s' which is not listed in your LICENSE_FLAGS_ACCEPTED." % unmatched
                 details = d.getVarFlag("LICENSE_FLAGS_DETAILS", unmatched)
                 if details:
-                    message += details
+                    message += "\n" + details
             bb.debug(1, "Skipping %s: %s" % (pn, message))
             raise bb.parse.SkipRecipe(message)