[oe-commits] Leonardo Sandoval : sstate.bbclass: Enclose sstate search parameter with quotes

git at git.openembedded.org git at git.openembedded.org
Tue Mar 5 13:27:25 UTC 2013


Module: openembedded-core.git
Branch: master-next
Commit: 545d7aa26dfefdc927e0f4e2cc37398ef2c63fa6
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=545d7aa26dfefdc927e0f4e2cc37398ef2c63fa6

Author: Leonardo Sandoval <leonardo.sandoval at freescale.com>
Date:   Mon Mar  4 17:45:10 2013 -0600

sstate.bbclass: Enclose sstate search parameter with quotes

In case filenames have spaces, execution of the function
sstater_install will hang, so the print parameter %s must be
enclosed with quotes.

Signed-off-by: Leonardo Sandoval <leonardo.sandoval at freescale.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/classes/sstate.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass
index ee925cd..ce9f243 100644
--- a/meta/classes/sstate.bbclass
+++ b/meta/classes/sstate.bbclass
@@ -174,7 +174,7 @@ def sstate_install(ss, d):
                     break
             if realmatch:
                 match.append(f)
-                sstate_search_cmd = "grep -rl %s %s --exclude=master.list | sed -e 's:^.*/::' -e 's:\.populate-sysroot::'" % (f, d.expand("${SSTATE_MANIFESTS}"))
+                sstate_search_cmd = "grep -rl '%s' %s --exclude=master.list | sed -e 's:^.*/::' -e 's:\.populate-sysroot::'" % (f, d.expand("${SSTATE_MANIFESTS}"))
                 search_output = subprocess.Popen(sstate_search_cmd, shell=True, stdout=subprocess.PIPE).communicate()[0]
                 if search_output != "":
                     match.append("Matched in %s" % search_output.rstrip())





More information about the Openembedded-commits mailing list