diff options
| -rw-r--r-- | bitbake/lib/bb/data_smart.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bitbake/lib/bb/data_smart.py b/bitbake/lib/bb/data_smart.py index 70257ab7f8..7f1b6dcb4f 100644 --- a/bitbake/lib/bb/data_smart.py +++ b/bitbake/lib/bb/data_smart.py | |||
| @@ -1000,7 +1000,10 @@ class DataSmart(MutableMapping): | |||
| 1000 | continue | 1000 | continue |
| 1001 | 1001 | ||
| 1002 | value = d.getVar(key, False) or "" | 1002 | value = d.getVar(key, False) or "" |
| 1003 | data.update({key:value}) | 1003 | if type(value) is type(self): |
| 1004 | data.update({key:value.get_hash()}) | ||
| 1005 | else: | ||
| 1006 | data.update({key:value}) | ||
| 1004 | 1007 | ||
| 1005 | varflags = d.getVarFlags(key, internalflags = True) | 1008 | varflags = d.getVarFlags(key, internalflags = True) |
| 1006 | if not varflags: | 1009 | if not varflags: |
