Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 348 Bytes

oelint.var.filesoverride.md

File metadata and controls

24 lines (15 loc) · 348 Bytes

oelint.var.filesoverride

severity: warning

Example

In my-recipe_1.0.bb

FILES:${PN} = " foo"

Why is this bad?

Override of FILES can lead to files accidentally installed into a different than the desired package. Do not override the default of Yocto/OE.

Ways to fix it

Append instead

FILES:${PN} += " foo"