diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2018-11-29 14:53:28 +0100 |
---|---|---|
committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-01-06 12:19:29 +0100 |
commit | b034f52656c19f378fc144abd9087e7526b1e27f (patch) | |
tree | 229eed798976f71a29585be161ffe8bc57a83973 /mesonbuild/build.py | |
parent | b91c5aad854bff3a13c27aa1a6ade85ded216207 (diff) | |
download | meson-b034f52656c19f378fc144abd9087e7526b1e27f.zip meson-b034f52656c19f378fc144abd9087e7526b1e27f.tar.gz meson-b034f52656c19f378fc144abd9087e7526b1e27f.tar.bz2 |
Filenames are now lists
Diffstat (limited to 'mesonbuild/build.py')
-rw-r--r-- | mesonbuild/build.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py index 4fa6bde..642c2d5 100644 --- a/mesonbuild/build.py +++ b/mesonbuild/build.py @@ -2120,6 +2120,9 @@ class RunTarget(Target): def get_filename(self): return self.name + def get_outputs(self): + return [self.name] + def type_suffix(self): return "@run" |