Add check for gawk, needed by x86 glic build

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@794 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Matthew Allum 2006-10-12 12:48:46 +00:00
parent 50f3bbc318
commit 5713649ceb
1 changed files with 3 additions and 0 deletions

View File

@ -84,6 +84,9 @@ def check_sanity(e):
if not check_app_exists('${BUILD_PREFIX}g++', e.data):
missing = missing + "C++ Compiler,"
if not check_app_exists('gawk', e.data):
missing = missing + "GNU awk (gawk),"
if not check_app_exists('patch', e.data):
missing = missing + "GNU patch,"