sanity.bbclass: Add sdl-config to required programs list. Remove fixme as now dealt with.

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@941 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie 2006-11-22 16:43:41 +00:00
parent 2f461dbdc0
commit db564fe4d9
1 changed files with 1 additions and 4 deletions

View File

@ -86,7 +86,7 @@ def check_sanity(e):
if not check_app_exists('${BUILD_PREFIX}g++', e.data):
missing = missing + "C++ Compiler,"
required_utilities = "patch diffstat texi2html cvs svn bzip2 tar gzip gawk"
required_utilities = "patch diffstat texi2html cvs svn bzip2 tar gzip gawk sdl-config"
for util in required_utilities.split():
if not check_app_exists( util, e.data ):
@ -99,9 +99,6 @@ def check_sanity(e):
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),"
# FIXME: We also need to check for libsdl-dev and zlib-dev
# for qemu-native...
if missing != "":
missing = missing.rstrip(',')
messages = messages + "Please install following missing utilities: %s\n" % missing