diff options
Diffstat (limited to 'meta/classes/sstate.bbclass')
-rw-r--r-- | meta/classes/sstate.bbclass | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 967ae9b559..832b39e7ee 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass | |||
@@ -169,8 +169,7 @@ def sstate_install(ss, d): | |||
169 | if realmatch: | 169 | if realmatch: |
170 | match.append(f) | 170 | match.append(f) |
171 | sstate_search_cmd = "grep -rl %s %s --exclude=master.list | sed -e 's:^.*/::' -e 's:\.populate-sysroot::'" % (f, d.expand("${SSTATE_MANIFESTS}")) | 171 | sstate_search_cmd = "grep -rl %s %s --exclude=master.list | sed -e 's:^.*/::' -e 's:\.populate-sysroot::'" % (f, d.expand("${SSTATE_MANIFESTS}")) |
172 | cmd_array = sstate_search_cmd.split(' ') | 172 | search_output = subprocess.Popen(sstate_search_cmd, shell=True, stdout=subprocess.PIPE).communicate()[0] |
173 | search_output = subprocess.Popen(cmd_array, stdout=subprocess.PIPE).communicate()[0] | ||
174 | if search_output != "": | 173 | if search_output != "": |
175 | match.append("Matched in %s" % search_output.rstrip()) | 174 | match.append("Matched in %s" % search_output.rstrip()) |
176 | if match: | 175 | if match: |