summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cache_extra.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/cache_extra.py')
-rw-r--r--bitbake/lib/bb/cache_extra.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/bb/cache_extra.py b/bitbake/lib/bb/cache_extra.py
index 4c8841f857..40ba304c43 100644
--- a/bitbake/lib/bb/cache_extra.py
+++ b/bitbake/lib/bb/cache_extra.py
@@ -40,6 +40,7 @@ class HobRecipeInfo(RecipeInfoCommon):
40 self.summary = self.getvar('SUMMARY', metadata) 40 self.summary = self.getvar('SUMMARY', metadata)
41 self.license = self.getvar('LICENSE', metadata) 41 self.license = self.getvar('LICENSE', metadata)
42 self.section = self.getvar('SECTION', metadata) 42 self.section = self.getvar('SECTION', metadata)
43 self.description = self.getvar('DESCRIPTION', metadata)
43 44
44 @classmethod 45 @classmethod
45 def init_cacheData(cls, cachedata): 46 def init_cacheData(cls, cachedata):
@@ -47,8 +48,10 @@ class HobRecipeInfo(RecipeInfoCommon):
47 cachedata.summary = {} 48 cachedata.summary = {}
48 cachedata.license = {} 49 cachedata.license = {}
49 cachedata.section = {} 50 cachedata.section = {}
51 cachedata.description = {}
50 52
51 def add_cacheData(self, cachedata, fn): 53 def add_cacheData(self, cachedata, fn):
52 cachedata.summary[fn] = self.summary 54 cachedata.summary[fn] = self.summary
53 cachedata.license[fn] = self.license 55 cachedata.license[fn] = self.license
54 cachedata.section[fn] = self.section 56 cachedata.section[fn] = self.section
57 cachedata.description[fn] = self.description