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/lib | |
parent | e8ed1454aec700fa4553c68123cdaec36bb23e45 (diff) | |
download | poky-453d8f49ac0340ecef6429fe539d0e0febf5071a.tar.gz |
bitbake/codeparser: Ensure cached sheel entries return the correct dependencies
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib')
-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(): | |||
206 | 206 | ||
207 | if h in shellparsecache: | 207 | if h in shellparsecache: |
208 | self.execs = shellparsecache[h].execs | 208 | self.execs = shellparsecache[h].execs |
209 | return | 209 | return self.execs |
210 | 210 | ||
211 | try: | 211 | try: |
212 | tokens, _ = pyshyacc.parse(value, eof=True, debug=False) | 212 | tokens, _ = pyshyacc.parse(value, eof=True, debug=False) |