diff options
Diffstat (limited to 'meta/classes')
-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 6716985bc0..e0e57ceec1 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass | |||
@@ -336,7 +336,7 @@ def check_path_length(filepath, pathname, limit): | |||
336 | return "" | 336 | return "" |
337 | 337 | ||
338 | def get_filesystem_id(path): | 338 | def get_filesystem_id(path): |
339 | status, result = oe.utils.getstatusoutput("stat -f -c '%s' %s" % ("%t", path)) | 339 | status, result = oe.utils.getstatusoutput("stat -f -c '%s' '%s'" % ("%t", path)) |
340 | if status == 0: | 340 | if status == 0: |
341 | return result | 341 | return result |
342 | else: | 342 | else: |