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 11:56:06 +0100 |
commit | 1a9878cdb1cdb807c47e852b780c8ef9b93a214e (patch) | |
tree | 532c2e57b5d431fcc797ebcc4632df2f0edd5765 | |
parent | 1c8887ec629516333cbe3736bc0f9d24fb08dffe (diff) | |
download | openembedded-core-1a9878cdb1cdb807c47e852b780c8ef9b93a214e.tar.gz openembedded-core-1a9878cdb1cdb807c47e852b780c8ef9b93a214e.tar.bz2 openembedded-core-1a9878cdb1cdb807c47e852b780c8ef9b93a214e.zip |
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 <armccurdy@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-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): 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: |