diff options
author | Richard Purdie <richard@openedhand.com> | 2006-11-22 16:43:41 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-11-22 16:43:41 +0000 |
commit | db564fe4d91c2bba9df21ea8b3610a4c1b2ea129 (patch) | |
tree | 21dbc99a8b493e39b703e9f1eb32e2d937870ae0 | |
parent | 2f461dbdc03049ffb0ad5bf236b555c264031558 (diff) | |
download | poky-db564fe4d91c2bba9df21ea8b3610a4c1b2ea129.tar.gz |
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
-rw-r--r-- | meta/classes/sanity.bbclass | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 58f424c6e8..019edd963e 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass | |||
@@ -86,7 +86,7 @@ def check_sanity(e): | |||
86 | if not check_app_exists('${BUILD_PREFIX}g++', e.data): | 86 | if not check_app_exists('${BUILD_PREFIX}g++', e.data): |
87 | missing = missing + "C++ Compiler," | 87 | missing = missing + "C++ Compiler," |
88 | 88 | ||
89 | required_utilities = "patch diffstat texi2html cvs svn bzip2 tar gzip gawk" | 89 | required_utilities = "patch diffstat texi2html cvs svn bzip2 tar gzip gawk sdl-config" |
90 | 90 | ||
91 | for util in required_utilities.split(): | 91 | for util in required_utilities.split(): |
92 | if not check_app_exists( util, e.data ): | 92 | if not check_app_exists( util, e.data ): |
@@ -99,9 +99,6 @@ def check_sanity(e): | |||
99 | 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': | 99 | 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': |
100 | missing = missing + "gcc-3.x (needed for qemu-native)," | 100 | missing = missing + "gcc-3.x (needed for qemu-native)," |
101 | 101 | ||
102 | # FIXME: We also need to check for libsdl-dev and zlib-dev | ||
103 | # for qemu-native... | ||
104 | |||
105 | if missing != "": | 102 | if missing != "": |
106 | missing = missing.rstrip(',') | 103 | missing = missing.rstrip(',') |
107 | messages = messages + "Please install following missing utilities: %s\n" % missing | 104 | messages = messages + "Please install following missing utilities: %s\n" % missing |