mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 13:09:50 +00:00
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:
@@ -86,7 +86,7 @@ def check_sanity(e):
|
|||||||
if not check_app_exists('${BUILD_PREFIX}g++', e.data):
|
if not check_app_exists('${BUILD_PREFIX}g++', e.data):
|
||||||
missing = missing + "C++ Compiler,"
|
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():
|
for util in required_utilities.split():
|
||||||
if not check_app_exists( util, e.data ):
|
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':
|
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),"
|
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 != "":
|
if missing != "":
|
||||||
missing = missing.rstrip(',')
|
missing = missing.rstrip(',')
|
||||||
messages = messages + "Please install following missing utilities: %s\n" % missing
|
messages = messages + "Please install following missing utilities: %s\n" % missing
|
||||||
|
|||||||
Reference in New Issue
Block a user