summaryrefslogtreecommitdiffstats
path: root/meta/classes/base.bbclass
diff options
context:
space:
mode:
authorJonathan Liu <net147@gmail.com>2015-03-18 16:31:57 +1100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-03-20 23:56:02 +0000
commit0f25dd5b6c4dd15965ec6d40bff28af4c3878464 (patch)
treee435edab24199d43f8df319688e74d766e72a1ca /meta/classes/base.bbclass
parentf14ef4d9e8ce5bbe9945b7df48dccb0f4c466caa (diff)
downloadpoky-0f25dd5b6c4dd15965ec6d40bff28af4c3878464.tar.gz
base.bbclass: clean up warning message for 'S'
(From OE-Core rev: ddac4f3c1350c3a4e0ea4ae732de0689325d883f) Signed-off-by: Jonathan Liu <net147@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/base.bbclass')
-rw-r--r--meta/classes/base.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index 2c2d0192f1..3d9235e1a6 100644
--- a/meta/classes/base.bbclass
+++ b/meta/classes/base.bbclass
@@ -151,7 +151,7 @@ python base_do_unpack() {
151 raise bb.build.FuncFailed(e) 151 raise bb.build.FuncFailed(e)
152 152
153 if not os.path.exists(s_dir): 153 if not os.path.exists(s_dir):
154 bb.warn("%s ('S') don't exist, you must set 'S' to a proper value" % s_dir) 154 bb.warn("%s ('S') doesn't exist, please set 'S' to a proper value" % s_dir)
155} 155}
156 156
157def pkgarch_mapping(d): 157def pkgarch_mapping(d):