diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-03-18 19:57:10 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-03-22 14:33:56 +0000 |
commit | e17a0bd6c0b1bfba24229166904297eab073a688 (patch) | |
tree | 2e7a82e376ab5f9782d599077048335c171bb90e /meta | |
parent | 9c5386c1fd74d832cf6e2acad3c69b1cc90de6b2 (diff) | |
download | openembedded-core-e17a0bd6c0b1bfba24229166904297eab073a688.tar.gz openembedded-core-e17a0bd6c0b1bfba24229166904297eab073a688.tar.bz2 openembedded-core-e17a0bd6c0b1bfba24229166904297eab073a688.zip |
sanity.bbclass: Add a note about using dpkg-reconfigure
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/sanity.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 89d6dcf035..9f86b20ca0 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass @@ -110,7 +110,7 @@ def check_sanity(e): messages = messages + "Please install following missing utilities: %s\n" % missing if os.path.basename(os.readlink('/bin/sh')) == 'dash': - messages = messages + "Using dash as /bin/sh causes various subtle build problems, please use bash instead.\n" + messages = messages + "Using dash as /bin/sh causes various subtle build problems, please use bash instead (e.g. 'dpkg-reconfigure dash' on an Ubuntu system.\n" omask = os.umask(022) if omask & 0755: |