diff options
author | Matthew Allum <mallum@openedhand.com> | 2006-12-05 14:47:38 +0000 |
---|---|---|
committer | Matthew Allum <mallum@openedhand.com> | 2006-12-05 14:47:38 +0000 |
commit | 5eadd9dfaf2b6fe5f8b34399c26205c3f7498f6f (patch) | |
tree | 92c8cc899bd60d8d5b0c6d702c67b2c035c94ee2 /meta/classes/sanity.bbclass | |
parent | 470beb5c1b8ea0b601e9751c1eb3d494d0b18fed (diff) | |
download | poky-5eadd9dfaf2b6fe5f8b34399c26205c3f7498f6f.tar.gz |
Remove now uneeded gcc-3.x check
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1008 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes/sanity.bbclass')
-rw-r--r-- | meta/classes/sanity.bbclass | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index e8cff1d348..5281cbc7af 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass | |||
@@ -92,13 +92,6 @@ def check_sanity(e): | |||
92 | if not check_app_exists( util, e.data ): | 92 | if not check_app_exists( util, e.data ): |
93 | missing = missing + "%s," % util | 93 | missing = missing + "%s," % util |
94 | 94 | ||
95 | # qemu-native needs gcc 3.x | ||
96 | |||
97 | gcc_version = commands.getoutput("${BUILD_PREFIX}gcc --version | head -n 1 | cut -f 3 -d ' '") | ||
98 | |||
99 | if not check_app_exists('gcc-3.4', e.data) and not check_app_exists('gcc-3.3', e.data) and gcc_version[0] != '3': | ||
100 | missing = missing + "gcc-3.x (needed for qemu-native)," | ||
101 | |||
102 | if missing != "": | 95 | if missing != "": |
103 | missing = missing.rstrip(',') | 96 | missing = missing.rstrip(',') |
104 | messages = messages + "Please install following missing utilities: %s\n" % missing | 97 | messages = messages + "Please install following missing utilities: %s\n" % missing |