diff options
| author | Richard Purdie <rpurdie@linux.intel.com> | 2009-01-03 16:33:11 +0000 |
|---|---|---|
| committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-01-03 16:33:11 +0000 |
| commit | 772ec7db089f5fefd85e1e37695a22009e76d3bc (patch) | |
| tree | 4f3f9066803f61b1f1898c1d39dff4f800239b40 /bitbake-dev/lib/bb/cooker.py | |
| parent | ee0faf1346cabb0c90f43891ede3f88878f87b8b (diff) | |
| download | poky-772ec7db089f5fefd85e1e37695a22009e76d3bc.tar.gz | |
bitbake-dev: Add BBCLASSEXTEND support
Diffstat (limited to 'bitbake-dev/lib/bb/cooker.py')
| -rw-r--r-- | bitbake-dev/lib/bb/cooker.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/bitbake-dev/lib/bb/cooker.py b/bitbake-dev/lib/bb/cooker.py index d19cef328d..bbae4f03b5 100644 --- a/bitbake-dev/lib/bb/cooker.py +++ b/bitbake-dev/lib/bb/cooker.py | |||
| @@ -868,7 +868,7 @@ class BBCooker: | |||
| 868 | 868 | ||
| 869 | # read a file's metadata | 869 | # read a file's metadata |
| 870 | try: | 870 | try: |
| 871 | fromCache, skip = self.bb_cache.loadData(f, self.configuration.data) | 871 | fromCache, skip = self.bb_cache.loadData(f, self.configuration.data, self.status) |
| 872 | if skip: | 872 | if skip: |
| 873 | skipped += 1 | 873 | skipped += 1 |
| 874 | bb.msg.debug(2, bb.msg.domain.Collection, "skipping %s" % f) | 874 | bb.msg.debug(2, bb.msg.domain.Collection, "skipping %s" % f) |
| @@ -876,7 +876,6 @@ class BBCooker: | |||
| 876 | continue | 876 | continue |
| 877 | elif fromCache: cached += 1 | 877 | elif fromCache: cached += 1 |
| 878 | else: parsed += 1 | 878 | else: parsed += 1 |
| 879 | deps = None | ||
| 880 | 879 | ||
| 881 | # Disabled by RP as was no longer functional | 880 | # Disabled by RP as was no longer functional |
| 882 | # allow metadata files to add items to BBFILES | 881 | # allow metadata files to add items to BBFILES |
| @@ -889,8 +888,6 @@ class BBCooker: | |||
| 889 | # aof = os.path.join(os.path.dirname(f),aof) | 888 | # aof = os.path.join(os.path.dirname(f),aof) |
| 890 | # files.append(aof) | 889 | # files.append(aof) |
| 891 | 890 | ||
| 892 | self.bb_cache.handle_data(f, self.status) | ||
| 893 | |||
| 894 | except IOError, e: | 891 | except IOError, e: |
| 895 | error += 1 | 892 | error += 1 |
| 896 | self.bb_cache.remove(f) | 893 | self.bb_cache.remove(f) |
