summaryrefslogtreecommitdiffstats
path: root/meta/classes-global
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2023-09-08 13:55:27 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-09-11 16:04:35 +0100
commit14a6dc7c0510d7b47e084fa63c168ce771572247 (patch)
tree75189956a251aa351de91fe7bce85a0f138d0336 /meta/classes-global
parentad48f96a88f2068e91d0e293860e5f46ec55ba57 (diff)
downloadpoky-14a6dc7c0510d7b47e084fa63c168ce771572247.tar.gz
base: add newline before LICENSE_FLAGS_DETAILS
To improve readability and avoid putting one inside LICENSE_FLAGS_DETAILS. (From OE-Core rev: 5e027da9265e58df016fc3ebe45e4400f0e5c7a7) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-global')
-rw-r--r--meta/classes-global/base.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes-global/base.bbclass b/meta/classes-global/base.bbclass
index 7c774d250f..f57f9cf827 100644
--- a/meta/classes-global/base.bbclass
+++ b/meta/classes-global/base.bbclass
@@ -527,7 +527,7 @@ python () {
527 message = "Has a restricted license '%s' which is not listed in your LICENSE_FLAGS_ACCEPTED." % unmatched 527 message = "Has a restricted license '%s' which is not listed in your LICENSE_FLAGS_ACCEPTED." % unmatched
528 details = d.getVarFlag("LICENSE_FLAGS_DETAILS", unmatched) 528 details = d.getVarFlag("LICENSE_FLAGS_DETAILS", unmatched)
529 if details: 529 if details:
530 message += details 530 message += "\n" + details
531 bb.debug(1, "Skipping %s: %s" % (pn, message)) 531 bb.debug(1, "Skipping %s: %s" % (pn, message))
532 raise bb.parse.SkipRecipe(message) 532 raise bb.parse.SkipRecipe(message)
533 533