[oe-commits] [openembedded-core] 14/22: sanity.bbclass: quote path passed to stat in get_filesystem_id()

git at git.openembedded.org git at git.openembedded.org
Wed Mar 28 11:47:44 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository openembedded-core.

commit 1a9878cdb1cdb807c47e852b780c8ef9b93a214e
Author: Andre McCurdy <armccurdy at gmail.com>
AuthorDate: Fri Mar 23 21:55:13 2018 -0700

    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 at gmail.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/classes/sanity.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index 6716985..e0e57ce 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:

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list