]> code.ossystems Code Review - openembedded-core.git/commitdiff
sstate: Fix EXTRA_STAGING_FIXMES handling
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 17 Jan 2017 17:42:40 +0000 (17:42 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 19 Jan 2017 22:45:54 +0000 (22:45 +0000)
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 <richard.purdie@linuxfoundation.org>
meta/classes/sstate.bbclass

index afdb4a32d09709c2ed81004b2f3a38fa81a51100..34069c78013486b43b03d18a3b82db655464c73e 100644 (file)
@@ -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"