mirror of
https://git.yoctoproject.org/poky
synced 2026-04-21 21:32:12 +02:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
5c8972f320
commit
d1b305e40c
@@ -336,7 +336,7 @@ def check_path_length(filepath, pathname, limit):
|
||||
return ""
|
||||
|
||||
def get_filesystem_id(path):
|
||||
status, result = oe.utils.getstatusoutput("stat -f -c '%s' %s" % ("%t", path))
|
||||
status, result = oe.utils.getstatusoutput("stat -f -c '%s' '%s'" % ("%t", path))
|
||||
if status == 0:
|
||||
return result
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user