diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2015-09-20 19:22:02 +0300 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2015-09-20 19:22:02 +0300 |
| commit | d17083605196423a2adcdbb3723478084ad892ea (patch) | |
| tree | 4c178dacc874b6e42bbff8f1e66bb875c547a984 /backends.py | |
| parent | c6a3a1f56a5573b121b5e8a7473e1242325c5962 (diff) | |
| download | meson-d17083605196423a2adcdbb3723478084ad892ea.tar.gz | |
Windows fix.
Diffstat (limited to 'backends.py')
| -rw-r--r-- | backends.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/backends.py b/backends.py index 0fc864649..f13b3c75f 100644 --- a/backends.py +++ b/backends.py @@ -257,14 +257,13 @@ class Backend(): links to and return them so they can be used in unit tests.''' if not isinstance(target, build.Executable): - print(target) return [] prospectives = target.get_transitive_link_deps() result = [] for ld in prospectives: if ld == '' or ld == '.': continue - dirseg = os.path.join(self.environment.get_build_dir(), self.get_target_dir()) + dirseg = os.path.join(self.environment.get_build_dir(), self.get_target_dir(ld)) if dirseg not in result: result.append(dirseg) return result |
