diff options
-rw-r--r-- | mesonbuild/interpreter.py | 2 | ||||
-rw-r--r-- | test cases/common/58 run target/meson.build | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/mesonbuild/interpreter.py b/mesonbuild/interpreter.py index 1ef4133..9584950 100644 --- a/mesonbuild/interpreter.py +++ b/mesonbuild/interpreter.py @@ -1877,6 +1877,8 @@ class Interpreter(): if not 'command' in kwargs: raise InterpreterException('Missing "command" keyword argument') all_args = kwargs['command'] + if not isinstance(all_args, list): + all_args = [all_args] deps = kwargs.get('depends', []) if not isinstance(deps, list): deps = [deps] diff --git a/test cases/common/58 run target/meson.build b/test cases/common/58 run target/meson.build index 0ab41b3..5824c74 100644 --- a/test cases/common/58 run target/meson.build +++ b/test cases/common/58 run target/meson.build @@ -42,4 +42,4 @@ run_target('ct_in_arg', # execute. Obviously this will not work as hex is not an # executable but test that the output is generated correctly. run_target('donotrunme', - command : [hex]) + command : hex) |