diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-06-16 21:03:57 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-06-16 21:03:57 +0300 |
commit | 68dbbeb78ff644f26d8cdd890218763ebf8afac4 (patch) | |
tree | bea09b55acaeec8201e3e5a6c1ba52deb5648432 /mesonbuild/build.py | |
parent | 981211e1f2d90c5a603d7091d81df62fdcaae17b (diff) | |
parent | 475175f4b5e5aecdd48455efb6a10f4bd7ce7b81 (diff) | |
download | meson-68dbbeb78ff644f26d8cdd890218763ebf8afac4.zip meson-68dbbeb78ff644f26d8cdd890218763ebf8afac4.tar.gz meson-68dbbeb78ff644f26d8cdd890218763ebf8afac4.tar.bz2 |
Octopus merged cross fixes and genetor custom because why not.
Diffstat (limited to 'mesonbuild/build.py')
-rw-r--r-- | mesonbuild/build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py index 1052303..bfdbca8 100644 --- a/mesonbuild/build.py +++ b/mesonbuild/build.py @@ -824,7 +824,7 @@ class CustomTarget: for c in self.sources: if hasattr(c, 'held_object'): c = c.held_object - if isinstance(c, BuildTarget) or isinstance(c, CustomTarget): + if isinstance(c, BuildTarget) or isinstance(c, CustomTarget) or isinstance(c, GeneratedList): deps.append(c) return deps |