diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-11 17:33:43 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-19 10:24:50 +0100 |
| commit | bfd279de3275abbfaf3e630383ec244131e0375f (patch) | |
| tree | 0d1c90461a890d21444f5d2afb13c52b302427f1 /meta/classes/qemu.bbclass | |
| parent | 99203edda6f0b09d817454d656c100b7a8806b18 (diff) | |
| download | poky-bfd279de3275abbfaf3e630383ec244131e0375f.tar.gz | |
Convert tab indentation in python functions into four-space
(From OE-Core rev: 604d46c686d06d62d5a07b9c7f4fa170f99307d8)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/qemu.bbclass')
| -rw-r--r-- | meta/classes/qemu.bbclass | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/meta/classes/qemu.bbclass b/meta/classes/qemu.bbclass index c0a538036f..0e75ac4e38 100644 --- a/meta/classes/qemu.bbclass +++ b/meta/classes/qemu.bbclass | |||
| @@ -4,12 +4,12 @@ | |||
| 4 | # | 4 | # |
| 5 | 5 | ||
| 6 | def qemu_target_binary(data): | 6 | def qemu_target_binary(data): |
| 7 | import bb | 7 | import bb |
| 8 | 8 | ||
| 9 | target_arch = data.getVar("TARGET_ARCH", True) | 9 | target_arch = data.getVar("TARGET_ARCH", True) |
| 10 | if target_arch in ("i486", "i586", "i686"): | 10 | if target_arch in ("i486", "i586", "i686"): |
| 11 | target_arch = "i386" | 11 | target_arch = "i386" |
| 12 | elif target_arch == "powerpc": | 12 | elif target_arch == "powerpc": |
| 13 | target_arch = "ppc" | 13 | target_arch = "ppc" |
| 14 | 14 | ||
| 15 | return "qemu-" + target_arch | 15 | return "qemu-" + target_arch |
