Munawar-git / YoctoTutorials

42 stars 22 forks source link

Correct error in 07 variable assignments.md #1

Open skywalkerylh opened 3 months ago

skywalkerylh commented 3 months ago

good resources for learning yocto!

But In the file 07 variable assignments.md, there is a small error in the example for variable assignments.

Current Content

# Append
A ?= "val"
A += "var"

# The final value is A="var"

Suggestioin

# Append
A ?= "val"
A += "var"

# The final value is A="val var"
skywalkerylh commented 3 months ago

another correction

A = "foo bar" A:remove = "var" A += "var" The final value is A=" foo bar "