diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2013-08-24 00:32:18 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2013-08-24 00:32:18 +0300 |
commit | 1467acc1bba1992f92284145400669352938c6d1 (patch) | |
tree | bb62b22b67a7189457099245af1b241bed7c8d4e | |
parent | 6536354cc31a8a9aee45affaedae7c2919e4204e (diff) | |
download | meson-1467acc1bba1992f92284145400669352938c6d1.zip meson-1467acc1bba1992f92284145400669352938c6d1.tar.gz meson-1467acc1bba1992f92284145400669352938c6d1.tar.bz2 |
Minor thing.
-rw-r--r-- | environment.py | 2 |
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) |