Remove now uneeded gcc-3.x check
authorMatthew Allum <mallum@openedhand.com>
Tue, 5 Dec 2006 14:47:38 +0000 (14:47 +0000)
committerMatthew Allum <mallum@openedhand.com>
Tue, 5 Dec 2006 14:47:38 +0000 (14:47 +0000)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1008 311d38ba-8fff-0310-9ca6-ca027cbcb966

meta/classes/sanity.bbclass

index e8cff1d..5281cbc 100644 (file)
@@ -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