mirror of
https://git.yoctoproject.org/poky
synced 2026-09-19 09:49:33 +02: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:
@@ -46,7 +46,7 @@ do_compile () {
|
||||
}
|
||||
|
||||
python populate_packages_prepend () {
|
||||
pcre_libdir = bb.data.expand('${libdir}', d)
|
||||
pcre_libdir = d.expand('${libdir}')
|
||||
do_split_packages(d, pcre_libdir, '^lib(.*)\.so\.+', 'lib%s', 'libpcre %s library', extra_depends='', allow_links=True)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user