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 | openembedded-core-5eadd9dfaf2b6fe5f8b34399c26205c3f7498f6f.tar.gz openembedded-core-5eadd9dfaf2b6fe5f8b34399c26205c3f7498f6f.tar.bz2 openembedded-core-5eadd9dfaf2b6fe5f8b34399c26205c3f7498f6f.tar.xz openembedded-core-5eadd9dfaf2b6fe5f8b34399c26205c3f7498f6f.zip |
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 e8cff1d34..5281cbc7a 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass @@ -92,13 +92,6 @@ def check_sanity(e): if not check_app_exists( util, e.data ): missing = missing + "%s," % util - # qemu-native needs gcc 3.x - - gcc_version = commands.getoutput("${BUILD_PREFIX}gcc --version | head -n 1 | cut -f 3 -d ' '") - - 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': - missing = missing + "gcc-3.x (needed for qemu-native)," - if missing != "": missing = missing.rstrip(',') messages = messages + "Please install following missing utilities: %s\n" % missing |