summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorMatthew Allum <mallum@openedhand.com>2006-10-12 12:48:46 +0000
committerMatthew Allum <mallum@openedhand.com>2006-10-12 12:48:46 +0000
commit5713649cebc1c7977ca66fc191fafd07c0a70eda (patch)
treecf59515644cdeda92fb8fc02823fc3da96277491 /meta/classes
parent50f3bbc318d6f1e415be6bf334effbef4757fd7d (diff)
downloadpoky-5713649cebc1c7977ca66fc191fafd07c0a70eda.tar.gz
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
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/sanity.bbclass3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index 603994e66e..1c96ad6d83 100644
--- a/meta/classes/sanity.bbclass
+++ b/meta/classes/sanity.bbclass
@@ -84,6 +84,9 @@ def check_sanity(e):
84 if not check_app_exists('${BUILD_PREFIX}g++', e.data): 84 if not check_app_exists('${BUILD_PREFIX}g++', e.data):
85 missing = missing + "C++ Compiler," 85 missing = missing + "C++ Compiler,"
86 86
87 if not check_app_exists('gawk', e.data):
88 missing = missing + "GNU awk (gawk),"
89
87 if not check_app_exists('patch', e.data): 90 if not check_app_exists('patch', e.data):
88 missing = missing + "GNU patch," 91 missing = missing + "GNU patch,"
89 92