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:06:51 +0100 |
commit | c3d18afaa54fe81aef80e45ec3564f7318dd4966 (patch) | |
tree | 84bb27fa41c7a29e2e3a6351792e4fd6df4fcd66 /meta/recipes-core | |
parent | db8217f6b89be11a17e9f3cba7d98be64d8aded1 (diff) | |
download | poky-c3d18afaa54fe81aef80e45ec3564f7318dd4966.tar.gz |
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>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/meta/external-sourcery-toolchain.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/meta/external-sourcery-toolchain.bb b/meta/recipes-core/meta/external-sourcery-toolchain.bb index 24c7ce8564..5fed30a6b2 100644 --- a/meta/recipes-core/meta/external-sourcery-toolchain.bb +++ b/meta/recipes-core/meta/external-sourcery-toolchain.bb | |||
@@ -142,6 +142,6 @@ CSL_VER_MAIN ??= "" | |||
142 | 142 | ||
143 | python () { | 143 | python () { |
144 | if not d.getVar("CSL_VER_MAIN"): | 144 | if not d.getVar("CSL_VER_MAIN"): |
145 | raise bb.parse.SkipPackage("External CSL toolchain not configured (CSL_VER_MAIN not set).") | 145 | raise bb.parse.SkipPackage("External CSL toolchain not configured (CSL_VER_MAIN not set).") |
146 | } | 146 | } |
147 | 147 | ||