aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/interpreter.py
diff options
context:
space:
mode:
authorElliott Sales de Andrade <quantum.analyst@gmail.com>2017-05-17 05:24:40 -0400
committerElliott Sales de Andrade <quantum.analyst@gmail.com>2017-05-17 19:43:14 -0400
commit00f89b0f6ec3cd73bd9859b815548f2267a4fcdc (patch)
treed35d072afa3f4a8572822682838ac503bf5482b0 /mesonbuild/interpreter.py
parent83d1c7f06323775c3f75a6bc37b77c348c74de25 (diff)
downloadmeson-00f89b0f6ec3cd73bd9859b815548f2267a4fcdc.zip
meson-00f89b0f6ec3cd73bd9859b815548f2267a4fcdc.tar.gz
meson-00f89b0f6ec3cd73bd9859b815548f2267a4fcdc.tar.bz2
Fix undefined variables/methods.
Diffstat (limited to 'mesonbuild/interpreter.py')
-rw-r--r--mesonbuild/interpreter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/interpreter.py b/mesonbuild/interpreter.py
index 5df26cc..3beb8b0 100644
--- a/mesonbuild/interpreter.py
+++ b/mesonbuild/interpreter.py
@@ -100,7 +100,7 @@ class RunProcess(InterpreterObject):
try:
return Popen_safe(command_array, env=child_env, cwd=cwd)
except FileNotFoundError:
- raise InterpreterException('Could not execute command "%s".' % cmd_name)
+ raise InterpreterException('Could not execute command "%s".' % ' '.join(command_array))
def returncode_method(self, args, kwargs):
return self.returncode