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"

Contents

  1. 1Example
  2. 2Why is this bad?
  3. 3Ways to fix it