aboutsummaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorDongxiao Xu <dongxiao.xu@intel.com>2012-04-01 20:14:11 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-05 14:00:26 +0100
commit20ea123c2841dd35f49fcdcc92cd3ce6d907c23f (patch)
tree91f378068b8586ec38251b09f4048b12ce91974c /bitbake
parent9cc1e863566bedd64af96f19be37be5359cf2ac8 (diff)
downloadopenembedded-core-contrib-20ea123c2841dd35f49fcdcc92cd3ce6d907c23f.tar.gz
Hob: Remove some calling of initiate_new_build()
initiate_new_build() function is in async mode and could not be called before another async function. Also we could not initialize the build if user simply change a setting, therefore remove this function. (Bitbake rev: c184cefe90115623e2312ad2bbe34ea95788c129) Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rwxr-xr-xbitbake/lib/bb/ui/crumbs/imagedetailspage.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/imagedetailspage.py b/bitbake/lib/bb/ui/crumbs/imagedetailspage.py
index b70440de5e..b12014a3c8 100755
--- a/bitbake/lib/bb/ui/crumbs/imagedetailspage.py
+++ b/bitbake/lib/bb/ui/crumbs/imagedetailspage.py
@@ -403,7 +403,6 @@ class ImageDetailsPage (HobPage):
response, path = self.builder.show_load_template_dialog()
if not response:
return
- self.builder.initiate_new_build()
if path:
self.builder.load_template(path)
@@ -415,6 +414,5 @@ class ImageDetailsPage (HobPage):
response, settings_changed = self.builder.show_adv_settings_dialog()
if not response:
return
- self.builder.initiate_new_build()
if settings_changed:
self.builder.reparse_post_adv_settings()