diff options
author | Richard Purdie <richard@openedhand.com> | 2008-02-07 10:23:08 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2008-02-07 10:23:08 +0000 |
commit | 51fd745b362be5d2cd7bdd36b798e1b05aea8803 (patch) | |
tree | baf9f55e56db483301fc21e6e75bbe6e5b19178a /meta/classes/sanity.bbclass | |
parent | 4627103ba7615711eaa0072f5f7fd7481fb66797 (diff) | |
download | poky-51fd745b362be5d2cd7bdd36b798e1b05aea8803.tar.gz |
sanity.bbclass: Fix qemu check
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3694 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes/sanity.bbclass')
-rw-r--r-- | meta/classes/sanity.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 46bc7c66b6..d3f0104f85 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass | |||
@@ -93,8 +93,8 @@ def check_sanity(e): | |||
93 | missing = missing + "gcc-3.x (needed for qemu-native)," | 93 | missing = missing + "gcc-3.x (needed for qemu-native)," |
94 | 94 | ||
95 | if "qemu-native" in assume_provided: | 95 | if "qemu-native" in assume_provided: |
96 | messages = messages + "qemu-native was in ASSUME_PROVIDED but the QEMU binaries can't be found in PATH" | 96 | if not check_app_exists("qemu_arm", e.data): |
97 | required_utilities = required_utilities + " qemu-arm" | 97 | messages = messages + "qemu-native was in ASSUME_PROVIDED but the QEMU binaries (qemu-arm) can't be found in PATH" |
98 | 98 | ||
99 | for util in required_utilities.split(): | 99 | for util in required_utilities.split(): |
100 | if not check_app_exists( util, e.data ): | 100 | if not check_app_exists( util, e.data ): |