Remove now uneeded gcc-3.x check

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1008 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Matthew Allum 2006-12-05 14:47:38 +00:00
parent 470beb5c1b
commit 5eadd9dfaf
1 changed files with 0 additions and 7 deletions

View 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