aboutsummaryrefslogtreecommitdiff
path: root/interpreter.py
diff options
context:
space:
mode:
Diffstat (limited to 'interpreter.py')
-rw-r--r--interpreter.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/interpreter.py b/interpreter.py
index bd5b815..4dd51a7 100644
--- a/interpreter.py
+++ b/interpreter.py
@@ -579,6 +579,7 @@ class Interpreter():
'configuration_data' : self.func_configuration_data,
'run_command' : self.func_run_command,
'gettext' : self.func_gettext,
+ 'option' : self.func_option,
}
def get_build_def_files(self):
@@ -693,6 +694,9 @@ class Interpreter():
raise InterpreterException('More than one gettext definitions currently not supported.')
self.build.pot.append((packagename, languages, self.subdir))
+ def func_option(self, nodes, args, kwargs):
+ raise InterpreterException('Tried to call option() in build description file. All options must be in the option file.')
+
def func_configuration_data(self, node, args, kwargs):
if len(args) != 0:
raise InterpreterException('configuration_data takes no arguments')