diff options
author | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2007-08-18 13:01:20 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2007-08-18 13:01:20 +0000 |
commit | d77d8c834fee976746f95fb9a0c5e84c679be2dc (patch) | |
tree | 67bad97c85763588c8a81d4f619dce2ab3feb17b /classes | |
parent | 6b3e31462e6afd26fa15f75e9c8df0ac80333806 (diff) | |
parent | 87adab44ffff99e39681f7c49c64ac164f00d5e9 (diff) |
merge of '1400bcc94161f278ffef24927913738f7baefb58'
and 'faf15e6fba7d554cc2bcffcfcc5601be8b383539'
Diffstat (limited to 'classes')
-rw-r--r-- | classes/sanity.bbclass | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/classes/sanity.bbclass b/classes/sanity.bbclass index 33cdae33ac..479abce7fa 100644 --- a/classes/sanity.bbclass +++ b/classes/sanity.bbclass @@ -90,7 +90,7 @@ def check_sanity(e): if not check_app_exists('${BUILD_PREFIX}g++', e.data): missing = missing + "C++ Compiler (${BUILD_PREFIX}g++)," - required_utilities = "patch help2man diffstat texi2html makeinfo cvs svn bzip2 tar gzip gawk md5sum stty" + required_utilities = "patch help2man diffstat texi2html makeinfo cvs svn bzip2 tar gzip gawk md5sum" for util in required_utilities.split(): if not check_app_exists( util, e.data ): @@ -109,11 +109,6 @@ def check_sanity(e): if not oes_bb_conf: messages = messages + 'You do not include OpenEmbeddeds version of conf/bitbake.conf\n' - # Check if the terminal has stty +tostop - if "tostop" in os.popen("stty").read(): - messages = messages + "You have tostop in your stty terminal setting. This will make BitBake hang when executing. Execute stty -tostop fix this.\n" - - if messages != "": raise_sanity_error(messages) |