mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 13:09:50 +00:00
meta: Replace bb.data.expand(xxx, d) -> d.expand(xxx)
sed \ -e 's:bb.data.\(expand([^,()]*\), *\([^) ]*\) *):\2.\1):g' \ -i `grep -ril bb.data.expand *` Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -54,7 +54,7 @@ python() {
|
||||
deps = (d.getVarFlag('do_setscene', 'depends') or "").split()
|
||||
deps.append('strace-native:do_populate_sysroot')
|
||||
d.setVarFlag('do_setscene', 'depends', " ".join(deps))
|
||||
logdir = bb.data.expand("${TRACE_LOGDIR}", d)
|
||||
logdir = d.expand("${TRACE_LOGDIR}")
|
||||
bb.utils.mkdirhier(logdir)
|
||||
else:
|
||||
d.setVar('STRACEFUNC', '')
|
||||
|
||||
Reference in New Issue
Block a user