From c5a5d23ec4850a7b2f307096117eece7e87f11ed Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 20 Jun 2013 13:07:18 +0000 Subject: bitbake: cooker: Ensure configuration matches variable tracking state When we reset, the current tracking value may change unexpectedly. This patch ensures that the default value is preserved over a datastore reset. (Bitbake rev: 0aa27598d9fdc8c3d18839b3ef93d0ba9698f761) Signed-off-by: Richard Purdie --- bitbake/lib/bb/cooker.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bitbake') diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index e304d81c5a..9c9734f887 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py @@ -150,9 +150,11 @@ class BBCooker: self.data = self.databuilder.data def enableDataTracking(self): + self.configuration.tracking = True self.data.enableTracking() def disableDataTracking(self): + self.configuration.tracking = False self.data.disableTracking() def loadConfigurationData(self): -- cgit v1.2.3-54-g00ecf