aboutsummaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-09-03 16:05:30 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2010-09-03 16:08:32 +0100
commit453d8f49ac0340ecef6429fe539d0e0febf5071a (patch)
treeb07fbcd28288584530ba23084b31f3847c3ae45d /bitbake
parente8ed1454aec700fa4553c68123cdaec36bb23e45 (diff)
downloadopenembedded-core-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')
-rw-r--r--bitbake/lib/bb/codeparser.py2
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)