From 5eadd9dfaf2b6fe5f8b34399c26205c3f7498f6f Mon Sep 17 00:00:00 2001
From: Matthew Allum <mallum@openedhand.com>
Date: Tue, 5 Dec 2006 14:47:38 +0000
Subject: Remove now uneeded gcc-3.x check

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1008 311d38ba-8fff-0310-9ca6-ca027cbcb966
---
 meta/classes/sanity.bbclass | 7 -------
 1 file changed, 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
-- 
cgit v1.2.3