aboutsummaryrefslogtreecommitdiff
path: root/environment.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-08-24 00:32:18 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2013-08-24 00:32:18 +0300
commit1467acc1bba1992f92284145400669352938c6d1 (patch)
treebb62b22b67a7189457099245af1b241bed7c8d4e /environment.py
parent6536354cc31a8a9aee45affaedae7c2919e4204e (diff)
downloadmeson-1467acc1bba1992f92284145400669352938c6d1.zip
meson-1467acc1bba1992f92284145400669352938c6d1.tar.gz
meson-1467acc1bba1992f92284145400669352938c6d1.tar.bz2
Minor thing.
Diffstat (limited to 'environment.py')
-rw-r--r--environment.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/environment.py b/environment.py
index 0feafaa..0fb2173 100644
--- a/environment.py
+++ b/environment.py
@@ -182,7 +182,7 @@ class CCompiler():
if p.returncode != 0:
return RunResult(False)
if self.is_cross:
- cmdlist = self.exe_wrapper + exename
+ cmdlist = self.exe_wrapper + [exename]
else:
cmdlist = exename
pe = subprocess.Popen(cmdlist, stdout=subprocess.PIPE, stderr=subprocess.PIPE)