severity: error
In my-recipe_1.0.bb
A:append += "1"
Multiple (potentially conflicting) modify operations to the same variable, do not make sense and can lead to unpredictable results
Use just one modifier at a time
A:append = " 1"
or
A += "1"
severity: error
In my-recipe_1.0.bb
A:append += "1"
Multiple (potentially conflicting) modify operations to the same variable, do not make sense and can lead to unpredictable results
Use just one modifier at a time
A:append = " 1"
or
A += "1"