aboutsummaryrefslogtreecommitdiff
path: root/backends.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-10-04 23:25:34 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2013-10-04 23:25:34 +0300
commit9f05fce831c5987346421687cc584df7c3907db6 (patch)
treefbf89af65c4971159044f7b680be974ae77e0e58 /backends.py
parentbb36eec84639c84ac60ff1efd4208bb7638be56d (diff)
downloadmeson-9f05fce831c5987346421687cc584df7c3907db6.zip
meson-9f05fce831c5987346421687cc584df7c3907db6.tar.gz
meson-9f05fce831c5987346421687cc584df7c3907db6.tar.bz2
Slogging through the test suite.
Diffstat (limited to 'backends.py')
-rw-r--r--backends.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends.py b/backends.py
index 32c2270..ec39c0c 100644
--- a/backends.py
+++ b/backends.py
@@ -860,7 +860,7 @@ class NinjaBackend(Backend):
commands += dep.get_link_flags()
dependencies = target.get_dependencies()
commands += self.build_target_link_arguments(linker, dependencies)
- commands.append(linker.build_rpath_arg(self.environment.get_build_dir(), target.get_rpaths()))
+ commands += linker.build_rpath_arg(self.environment.get_build_dir(), target.get_rpaths())
if self.environment.coredata.coverage:
commands += linker.get_coverage_link_flags()
dep_targets = [self.get_dependency_filename(t) for t in dependencies]