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"
March 17, 2024 ยท View on GitHub
severity: info
In every bitbake file
VAR += " a"
The leading space is unnecessary and will just bloat the resulting command line(s)
VAR += "a"