diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2018-03-23 21:55:13 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-03-28 12:09:52 +0100 |
commit | d1b305e40c0835448ea5f7c44f19474c7856d2a5 (patch) | |
tree | 4f2217f90936695fdb3dc2638eee39b29b061a61 /meta/classes | |
parent | 5c8972f320318d03b95091f8e14673fb7982d9a4 (diff) | |
download | poky-d1b305e40c0835448ea5f7c44f19474c7856d2a5.tar.gz |
sanity.bbclass: quote path passed to stat in get_filesystem_id()
Although get_filesystem_id() is a private API and never gets passed
a path containing spaces or other special characters, etc, quote the
path anyway for consistency.
(From OE-Core rev: 1a9878cdb1cdb807c47e852b780c8ef9b93a214e)
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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: |