diff options
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/cooker.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index 1b820d8836..29f7156341 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
@@ -1488,7 +1488,7 @@ class BBCooker: | |||
1488 | v = self.data.getVar(k, expand) | 1488 | v = self.data.getVar(k, expand) |
1489 | if not k.startswith("__") and not isinstance(v, bb.data_smart.DataSmart): | 1489 | if not k.startswith("__") and not isinstance(v, bb.data_smart.DataSmart): |
1490 | dump[k] = { | 1490 | dump[k] = { |
1491 | 'v' : v , | 1491 | 'v' : str(v) , |
1492 | 'history' : self.data.varhistory.variable(k), | 1492 | 'history' : self.data.varhistory.variable(k), |
1493 | } | 1493 | } |
1494 | for d in flaglist: | 1494 | for d in flaglist: |