diff options
Diffstat (limited to 'meta/classes-global')
-rw-r--r-- | meta/classes-global/base.bbclass | 2 |
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 | ||