summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2013-02-18 23:20:11 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-02-19 08:47:35 -0800
commitd10a2f9199e9462929801d537262b96061d10470 (patch)
treed569e7b76268803b2b575eb6b15ba98427783eb0
parentec4c1ee435f43402047f41119a0bf107bf4687cc (diff)
downloadpoky-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>
-rw-r--r--meta/classes/sanity.bbclass2
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
227def check_path_length(filepath, pathname, limit): 227def 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
232def check_connectivity(d): 232def check_connectivity(d):