diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-03 16:05:30 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-03 16:08:32 +0100 |
commit | 453d8f49ac0340ecef6429fe539d0e0febf5071a (patch) | |
tree | b07fbcd28288584530ba23084b31f3847c3ae45d /bitbake | |
parent | e8ed1454aec700fa4553c68123cdaec36bb23e45 (diff) | |
download | openembedded-core-453d8f49ac0340ecef6429fe539d0e0febf5071a.tar.gz openembedded-core-453d8f49ac0340ecef6429fe539d0e0febf5071a.tar.bz2 openembedded-core-453d8f49ac0340ecef6429fe539d0e0febf5071a.zip |
bitbake/codeparser: Ensure cached sheel entries return the correct dependencies
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/codeparser.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |