From 6a46a974611c5262efefc21a11adb736c0fb206a Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 17 Jan 2017 17:42:40 +0000 Subject: sstate: Fix EXTRA_STAGING_FIXMES handling The code wasn't working properly, tweak so that it works as expected and the grep expression includes the right patterns. Not sure this code has ever worked prior to this. Signed-off-by: Richard Purdie --- meta/classes/sstate.bbclass | 1 + 1 file changed, 1 insertion(+) (limited to 'meta') diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index afdb4a32d0..34069c7801 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass @@ -518,6 +518,7 @@ python sstate_hardcode_path () { for fixmevar in extra_staging_fixmes.split(): fixme_path = d.getVar(fixmevar) sstate_sed_cmd += " -e 's:%s:FIXME_%s:g'" % (fixme_path, fixmevar) + sstate_grep_cmd += " -e '%s'" % (fixme_path) fixmefn = sstate_builddir + "fixmepath" -- cgit 1.2.3-korg