oelint.vars.summarylinebreaks
March 17, 2024 ยท View on GitHub
severity: warning
Example
In any bitbake recipe
SUMMARY = "a\nb\nc"
Why is this bad?
The OpenEmbedded Style guide requires SUMMARY a single line
Ways to fix it
SUMMARY = "a b c"
March 17, 2024 ยท View on GitHub
severity: warning
In any bitbake recipe
SUMMARY = "a\nb\nc"
The OpenEmbedded Style guide requires SUMMARY a single line
SUMMARY = "a b c"