diff options
Diffstat (limited to 'bitbake/lib/bb/data.py')
| -rw-r--r-- | bitbake/lib/bb/data.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bitbake/lib/bb/data.py b/bitbake/lib/bb/data.py index 87c4808b5e..8c9cb0f025 100644 --- a/bitbake/lib/bb/data.py +++ b/bitbake/lib/bb/data.py | |||
| @@ -97,6 +97,10 @@ def delVar(var, d): | |||
| 97 | """Removes a variable from the data set""" | 97 | """Removes a variable from the data set""" |
| 98 | d.delVar(var) | 98 | d.delVar(var) |
| 99 | 99 | ||
| 100 | def appendVar(var, value, d): | ||
| 101 | """Append additional value to a variable""" | ||
| 102 | d.appendVar(var, value) | ||
| 103 | |||
| 100 | def setVarFlag(var, flag, flagvalue, d): | 104 | def setVarFlag(var, flag, flagvalue, d): |
| 101 | """Set a flag for a given variable to a given value""" | 105 | """Set a flag for a given variable to a given value""" |
| 102 | d.setVarFlag(var, flag, flagvalue) | 106 | d.setVarFlag(var, flag, flagvalue) |
