diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2014-09-20 14:08:48 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2014-09-20 14:08:48 +0300 |
commit | 77c14525c39b9f1e020cd48827127d0a65deb59c (patch) | |
tree | adf11d03c5f00c371b6e6dff73025d586cfb0af0 /build.py | |
parent | dbb72bfd1293eb7d6e0698f6205ed0cbff0cbf6f (diff) | |
download | meson-77c14525c39b9f1e020cd48827127d0a65deb59c.zip meson-77c14525c39b9f1e020cd48827127d0a65deb59c.tar.gz meson-77c14525c39b9f1e020cd48827127d0a65deb59c.tar.bz2 |
Autodetect runnable commands on unix (where chmod values might be wrong) and Windows (where files with weird suffixes are unrunnable.
Diffstat (limited to 'build.py')
-rw-r--r-- | build.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -710,7 +710,7 @@ class CustomTarget: if isinstance(c, str): final_cmd.append(c) elif isinstance(c, dependencies.ExternalProgram): - final_cmd.append(c.get_command()) + final_cmd += c.get_command() elif isinstance(c, BuildTarget) or isinstance(c, CustomTarget): self.dependencies.append(c) # GIR scanner will attempt to execute this binary but |