]> code.ossystems Code Review - openembedded-core.git/commitdiff
bitbake/codeparser: Ensure cached sheel entries return the correct dependencies
authorRichard Purdie <rpurdie@linux.intel.com>
Fri, 3 Sep 2010 15:05:30 +0000 (16:05 +0100)
committerRichard Purdie <rpurdie@linux.intel.com>
Fri, 3 Sep 2010 15:08:32 +0000 (16:08 +0100)
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
bitbake/lib/bb/codeparser.py

index faffe390d9701cb6a52ec5bb2b326c7b50942a3b..951bd47b88f40258798c9ec5c623837ac11053f8 100644 (file)
@@ -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)