diff options
-rw-r--r-- | meta/classes/qemu.bbclass | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/meta/classes/qemu.bbclass b/meta/classes/qemu.bbclass index 930c6b082e..3d437b0e45 100644 --- a/meta/classes/qemu.bbclass +++ b/meta/classes/qemu.bbclass | |||
@@ -4,9 +4,7 @@ | |||
4 | # | 4 | # |
5 | 5 | ||
6 | def qemu_target_binary(data): | 6 | def qemu_target_binary(data): |
7 | target_arch = data.getVar("TARGET_ARCH_MULTILIB_ORIGINAL", True) | 7 | target_arch = data.getVar("TARGET_ARCH", True) |
8 | if not target_arch: | ||
9 | target_arch = data.getVar("TARGET_ARCH", True) | ||
10 | if target_arch in ("i486", "i586", "i686"): | 8 | if target_arch in ("i486", "i586", "i686"): |
11 | target_arch = "i386" | 9 | target_arch = "i386" |
12 | elif target_arch == "powerpc": | 10 | elif target_arch == "powerpc": |