diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2013-02-18 23:20:11 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-02-19 08:47:35 -0800 |
commit | d10a2f9199e9462929801d537262b96061d10470 (patch) | |
tree | d569e7b76268803b2b575eb6b15ba98427783eb0 /meta | |
parent | ec4c1ee435f43402047f41119a0bf107bf4687cc (diff) | |
download | poky-d10a2f9199e9462929801d537262b96061d10470.tar.gz |
sanity: check_path_length: replace tab with 8 spaces
(From OE-Core rev: de3f2367c46a213d07d834c7e874d2a4a0697026)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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 15998755c1..d3bf05a803 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass | |||
@@ -226,7 +226,7 @@ def check_create_long_filename(filepath, pathname): | |||
226 | 226 | ||
227 | def check_path_length(filepath, pathname, limit): | 227 | def check_path_length(filepath, pathname, limit): |
228 | if len(filepath) > limit: | 228 | if len(filepath) > limit: |
229 | return "The length of %s is longer than 410, this would cause unexpected errors, please use a shorter path.\n" % pathname | 229 | return "The length of %s is longer than 410, this would cause unexpected errors, please use a shorter path.\n" % pathname |
230 | return "" | 230 | return "" |
231 | 231 | ||
232 | def check_connectivity(d): | 232 | def check_connectivity(d): |