Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 259 Bytes

oelint.vars.mispell.md

File metadata and controls

22 lines (14 loc) · 259 Bytes

oelint.vars.mispell

severity: warning

Example

In any bitbake file

DPENDS += "foo"

Why is this bad?

The variable name is not known but looks very similar to a known one. Likely that is a typo.

Ways to fix it

DEPENDS += "foo"