mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 00:59:48 +00:00
classes/recipes/lib: Fix various python whitespace issues
There are some left over tab characters in the python functions. This removes them and resolves python 3 errors. (From OE-Core rev: fafeb381c48291fa65c634c01c244843c8d7fad3) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -5,10 +5,10 @@ KERNEL_DEVICETREE_FLAGS ?= "-R 8 -p 0x3000"
|
||||
python __anonymous () {
|
||||
devicetree = d.getVar("KERNEL_DEVICETREE", True) or ''
|
||||
if devicetree:
|
||||
depends = d.getVar("DEPENDS", True)
|
||||
d.setVar("DEPENDS", "%s dtc-native" % depends)
|
||||
packages = d.getVar("PACKAGES", True)
|
||||
d.setVar("PACKAGES", "%s kernel-devicetree" % packages)
|
||||
depends = d.getVar("DEPENDS", True)
|
||||
d.setVar("DEPENDS", "%s dtc-native" % depends)
|
||||
packages = d.getVar("PACKAGES", True)
|
||||
d.setVar("PACKAGES", "%s kernel-devicetree" % packages)
|
||||
}
|
||||
|
||||
do_install_append() {
|
||||
|
||||
Reference in New Issue
Block a user