From: Andre McCurdy Date: Sat, 24 Mar 2018 04:55:13 +0000 (-0700) Subject: sanity.bbclass: quote path passed to stat in get_filesystem_id() X-Git-Tag: uninative-1.9~97 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=1a9878cdb1cdb807c47e852b780c8ef9b93a214e;p=openembedded-core.git 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. Signed-off-by: Andre McCurdy Signed-off-by: Ross Burton --- 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): 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: