mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 12:29:55 +00:00
Convert tab indentation in python functions into four-space
(From OE-Core rev: 604d46c686d06d62d5a07b9c7f4fa170f99307d8) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
python read_subpackage_metadata () {
|
||||
import oe.packagedata
|
||||
import oe.packagedata
|
||||
|
||||
data = oe.packagedata.read_pkgdata(d.getVar('PN', True), d)
|
||||
data = oe.packagedata.read_pkgdata(d.getVar('PN', True), d)
|
||||
|
||||
for key in data.keys():
|
||||
d.setVar(key, data[key])
|
||||
for key in data.keys():
|
||||
d.setVar(key, data[key])
|
||||
|
||||
for pkg in d.getVar('PACKAGES', True).split():
|
||||
sdata = oe.packagedata.read_subpkgdata(pkg, d)
|
||||
for key in sdata.keys():
|
||||
d.setVar(key, sdata[key])
|
||||
for pkg in d.getVar('PACKAGES', True).split():
|
||||
sdata = oe.packagedata.read_subpkgdata(pkg, d)
|
||||
for key in sdata.keys():
|
||||
d.setVar(key, sdata[key])
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user