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: 2011-1~4620 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=453d8f49ac0340ecef6429fe539d0e0febf5071a;p=openembedded-core.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 faffe390d9..951bd47b88 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)