diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-04-17 16:43:09 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-19 13:34:43 +0100 |
commit | 494bf2d943de5665d529fb98c0db5be635b58b45 (patch) | |
tree | 76eb3de01cd5f9dbf797d0acf749fe02a0de9de2 /meta | |
parent | d92970f7c1cd659f2165542b7eeeb1e1efd9675f (diff) | |
download | poky-494bf2d943de5665d529fb98c0db5be635b58b45.tar.gz |
classes/base: clarify S not set correctly warning
Hopefully make it a bit clearer to the user which recipe needs fixing
and what needs to be done to fix it.
(From OE-Core rev: 50e75d0cd7190a009776d72a4ae5c3e835895e6b)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/base.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 3d9235e1a6..0032b302cf 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') doesn't exist, please set 'S' to a proper value" % s_dir) | 154 | bb.warn('%s: the directory %s (%s) pointed to by the S variable doesn\'t exist - please set S within the recipe to point to where the source has been unpacked to' % (d.getVar('PN', True), d.getVar('S', False), s_dir)) |
155 | } | 155 | } |
156 | 156 | ||
157 | def pkgarch_mapping(d): | 157 | def pkgarch_mapping(d): |