]> code.ossystems Code Review - openembedded-core.git/commitdiff
Add check for gawk, needed by x86 glic build
authorMatthew Allum <mallum@openedhand.com>
Thu, 12 Oct 2006 12:48:46 +0000 (12:48 +0000)
committerMatthew Allum <mallum@openedhand.com>
Thu, 12 Oct 2006 12:48:46 +0000 (12:48 +0000)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@794 311d38ba-8fff-0310-9ca6-ca027cbcb966

meta/classes/sanity.bbclass

index 603994e66ec6120430fe041c7f179b99a6d492bd..1c96ad6d838daa0a675151cc5cb7ae02d93ee5ff 100644 (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,"