Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 297 Bytes

oelint.vars.licensesdpx.md

File metadata and controls

22 lines (14 loc) · 297 Bytes

oelint.vars.licensesdpx

severity: warning

Example

In any recipe

LICENSE = "ISC &MIT"

Why is this bad?

The syntax is always & or | for combined licenses. Detection might fail if the surrounding spaces are omitted.

Ways to fix it

LICENSE = "ISC & MIT"