summaryrefslogtreecommitdiffstats
path: root/meta/classes/sanity.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/sanity.bbclass')
-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 d229938c93..eda0ea9c8a 100644
--- a/meta/classes/sanity.bbclass
+++ b/meta/classes/sanity.bbclass
@@ -334,7 +334,7 @@ def check_create_long_filename(filepath, pathname):
334 334
335def check_path_length(filepath, pathname, limit): 335def check_path_length(filepath, pathname, limit):
336 if len(filepath) > limit: 336 if len(filepath) > limit:
337 return "The length of %s is longer than 410, this would cause unexpected errors, please use a shorter path.\n" % pathname 337 return "The length of %s is longer than %s, this would cause unexpected errors, please use a shorter path.\n" % (pathname, limit)
338 return "" 338 return ""
339 339
340def get_filesystem_id(path): 340def get_filesystem_id(path):