diff options
Diffstat (limited to 'bitbake/lib/bb/command.py')
-rw-r--r-- | bitbake/lib/bb/command.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py index 21a6de0f62..3ca27a69e0 100644 --- a/bitbake/lib/bb/command.py +++ b/bitbake/lib/bb/command.py | |||
@@ -241,6 +241,13 @@ class CommandsSync: | |||
241 | op = params[3] | 241 | op = params[3] |
242 | command.cooker.modifyConfigurationVar(var, val, default_file, op) | 242 | command.cooker.modifyConfigurationVar(var, val, default_file, op) |
243 | 243 | ||
244 | def removeVarFile(self, command, params): | ||
245 | """ | ||
246 | Remove a variable declaration from a file | ||
247 | """ | ||
248 | var = params[0] | ||
249 | command.cooker.removeConfigurationVar(var) | ||
250 | |||
244 | def createConfigFile(self, command, params): | 251 | def createConfigFile(self, command, params): |
245 | """ | 252 | """ |
246 | Create an extra configuration file | 253 | Create an extra configuration file |