diff options
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/cooker.py | 2 |
1 files changed, 2 insertions, 0 deletions
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: | |||
150 | self.data = self.databuilder.data | 150 | self.data = self.databuilder.data |
151 | 151 | ||
152 | def enableDataTracking(self): | 152 | def enableDataTracking(self): |
153 | self.configuration.tracking = True | ||
153 | self.data.enableTracking() | 154 | self.data.enableTracking() |
154 | 155 | ||
155 | def disableDataTracking(self): | 156 | def disableDataTracking(self): |
157 | self.configuration.tracking = False | ||
156 | self.data.disableTracking() | 158 | self.data.disableTracking() |
157 | 159 | ||
158 | def loadConfigurationData(self): | 160 | def loadConfigurationData(self): |