From e0ed375a8dfb292bdd72f5891917ef81f361f15c Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz Date: Wed, 4 Feb 2009 12:11:27 +0100 Subject: sanity.bbclass: make a warning about dash being used as /bin/sh (from Poky) gtk+ fails with dash --- classes/sanity.bbclass | 3 +++ 1 file changed, 3 insertions(+) (limited to 'classes') diff --git a/classes/sanity.bbclass b/classes/sanity.bbclass index e442bf1807..da3e630445 100644 --- a/classes/sanity.bbclass +++ b/classes/sanity.bbclass @@ -112,6 +112,9 @@ def check_sanity(e): missing = missing.rstrip(',') 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" + omask = os.umask(022) if omask & 0755: messages = messages + "Please use a umask which allows a+rx and u+rwx\n" -- cgit 1.2.3-korg