From: Richard Purdie Date: Tue, 17 Jan 2017 17:42:40 +0000 (+0000) Subject: sstate: Fix EXTRA_STAGING_FIXMES handling X-Git-Tag: uninative-1.5~792 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=6a46a974611c5262efefc21a11adb736c0fb206a;p=openembedded-core.git 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 --- 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"