mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

getVar() now defaults to expanding by default, thus remove the True option from getVar() calls with a regex search and replace. Search made with the following regex: getVar ?\(( ?[^,()]*), True\) Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
9 lines
151 B
Plaintext
9 lines
151 B
Plaintext
python __anonymous () {
|
|
|
|
machine_kernel_pr = d.getVar('MACHINE_KERNEL_PR')
|
|
|
|
if machine_kernel_pr:
|
|
d.setVar('PR', machine_kernel_pr)
|
|
}
|
|
|