From d03856c61150f95d9f479fcee2c7e91bd22eeaa4 Mon Sep 17 00:00:00 2001 From: Dongxiao Xu Date: Fri, 16 Mar 2012 16:48:12 +0800 Subject: Hob: Fix advanced setting reparse mechanism When judging if reparse is needed when change values in advanced setting, we need also include user's own defined variable pairs. [YOCTO #2121] (Bitbake rev: db4b78798e2280736ddce9f54d25cbcdcb779d0a) Signed-off-by: Dongxiao Xu Signed-off-by: Richard Purdie --- bitbake/lib/bb/ui/crumbs/hig.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bitbake/lib/bb/ui/crumbs/hig.py') diff --git a/bitbake/lib/bb/ui/crumbs/hig.py b/bitbake/lib/bb/ui/crumbs/hig.py index 849d7c9adf..baad7b8271 100644 --- a/bitbake/lib/bb/ui/crumbs/hig.py +++ b/bitbake/lib/bb/ui/crumbs/hig.py @@ -453,6 +453,8 @@ class AdvancedSettingDialog (CrumbsDialog): self.variables["PACKAGE_FORMAT"] = self.configuration.curr_package_format self.variables["INCOMPATIBLE_LICENSE"] = self.configuration.incompat_license self.variables["IMAGE_FSTYPES"] = self.configuration.image_fstypes + for key in self.configuration.extra_setting.keys(): + self.variables[key] = self.configuration.extra_setting[key] self.md5 = hashlib.md5(str(sorted(self.variables.items()))).hexdigest() self.settings_changed = False -- cgit v1.2.3-54-g00ecf