From: Richard Purdie Date: Fri, 3 Sep 2010 15:05:30 +0000 (+0100) Subject: bitbake/codeparser: Ensure cached sheel entries return the correct dependencies X-Git-Tag: yocto-4.0~44320 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=453d8f49ac0340ecef6429fe539d0e0febf5071a;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git bitbake/codeparser: Ensure cached sheel entries return the correct dependencies Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/codeparser.py b/bitbake/lib/bb/codeparser.py index faffe390d97..951bd47b88f 100644 --- a/bitbake/lib/bb/codeparser.py +++ b/bitbake/lib/bb/codeparser.py @@ -206,7 +206,7 @@ class ShellParser(): if h in shellparsecache: self.execs = shellparsecache[h].execs - return + return self.execs try: tokens, _ = pyshyacc.parse(value, eof=True, debug=False)