oelint.vars.notneededspace

March 17, 2024 ยท View on GitHub

severity: info

Example

In every bitbake file

VAR += " a"

Why is this bad?

The leading space is unnecessary and will just bloat the resulting command line(s)

Ways to fix it

VAR += "a"

Contents

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