diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-07 13:55:53 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-09 14:04:18 +0100 |
commit | fafeb381c48291fa65c634c01c244843c8d7fad3 (patch) | |
tree | 41a94affedce2db29d42b4151dc7d40f0ded8223 /meta/recipes-kernel | |
parent | f4b382754603d3f1caa13824bcc8d06b568bbc59 (diff) | |
download | openembedded-core-fafeb381c48291fa65c634c01c244843c8d7fad3.tar.gz openembedded-core-fafeb381c48291fa65c634c01c244843c8d7fad3.tar.bz2 openembedded-core-fafeb381c48291fa65c634c01c244843c8d7fad3.zip |
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.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel')
-rw-r--r-- | meta/recipes-kernel/linux-libc-headers/linux-libc-headers.inc | 4 | ||||
-rw-r--r-- | meta/recipes-kernel/linux/linux-dtb.inc | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/meta/recipes-kernel/linux-libc-headers/linux-libc-headers.inc b/meta/recipes-kernel/linux-libc-headers/linux-libc-headers.inc index 962ca757cd..96fe2ffd62 100644 --- a/meta/recipes-kernel/linux-libc-headers/linux-libc-headers.inc +++ b/meta/recipes-kernel/linux-libc-headers/linux-libc-headers.inc @@ -7,9 +7,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7" python __anonymous () { major = d.getVar("PV",True).split('.')[0] if major == "3": - d.setVar("HEADER_FETCH_VER", "3.0") + d.setVar("HEADER_FETCH_VER", "3.0") else: - d.setVar("HEADER_FETCH_VER", "2.6") + d.setVar("HEADER_FETCH_VER", "2.6") } inherit kernel-arch diff --git a/meta/recipes-kernel/linux/linux-dtb.inc b/meta/recipes-kernel/linux/linux-dtb.inc index 58b93a1255..7747718391 100644 --- a/meta/recipes-kernel/linux/linux-dtb.inc +++ b/meta/recipes-kernel/linux/linux-dtb.inc @@ -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() { |