|
|
@ -579,6 +579,7 @@ class Interpreter(): |
|
|
|
'configuration_data' : self.func_configuration_data, |
|
|
|
'configuration_data' : self.func_configuration_data, |
|
|
|
'run_command' : self.func_run_command, |
|
|
|
'run_command' : self.func_run_command, |
|
|
|
'gettext' : self.func_gettext, |
|
|
|
'gettext' : self.func_gettext, |
|
|
|
|
|
|
|
'option' : self.func_option, |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
def get_build_def_files(self): |
|
|
|
def get_build_def_files(self): |
|
|
@ -693,6 +694,9 @@ class Interpreter(): |
|
|
|
raise InterpreterException('More than one gettext definitions currently not supported.') |
|
|
|
raise InterpreterException('More than one gettext definitions currently not supported.') |
|
|
|
self.build.pot.append((packagename, languages, self.subdir)) |
|
|
|
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): |
|
|
|
def func_configuration_data(self, node, args, kwargs): |
|
|
|
if len(args) != 0: |
|
|
|
if len(args) != 0: |
|
|
|
raise InterpreterException('configuration_data takes no arguments') |
|
|
|
raise InterpreterException('configuration_data takes no arguments') |
|
|
|