aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/rust.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2017-07-21 22:19:07 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2017-07-21 22:19:07 +0300
commitbff37a90fc475c6204087dcf1ccb6734b990141e (patch)
treed228c8107a4daf66e76f3d0fa4a03e5e689c55e9 /mesonbuild/compilers/rust.py
parent328a1f30fdfdadc6d5df4ebfc075e9cd5c0df96e (diff)
parente82edc179fe86e68d1f74fe084fd891ef2d12316 (diff)
downloadmeson-bff37a90fc475c6204087dcf1ccb6734b990141e.zip
meson-bff37a90fc475c6204087dcf1ccb6734b990141e.tar.gz
meson-bff37a90fc475c6204087dcf1ccb6734b990141e.tar.bz2
Merged buildrpath branch.
Diffstat (limited to 'mesonbuild/compilers/rust.py')
-rw-r--r--mesonbuild/compilers/rust.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/compilers/rust.py b/mesonbuild/compilers/rust.py
index 38ba6a2..b93289f 100644
--- a/mesonbuild/compilers/rust.py
+++ b/mesonbuild/compilers/rust.py
@@ -50,8 +50,8 @@ class RustCompiler(Compiler):
def get_buildtype_args(self, buildtype):
return rust_buildtype_args[buildtype]
- def build_rpath_args(self, build_dir, from_dir, rpath_paths, install_rpath):
- return self.build_unix_rpath_args(build_dir, from_dir, rpath_paths, install_rpath)
+ def build_rpath_args(self, build_dir, from_dir, rpath_paths, build_rpath, install_rpath):
+ return self.build_unix_rpath_args(build_dir, from_dir, rpath_paths, build_rpath, install_rpath)
def get_sysroot(self):
cmd = self.exelist + ['--print', 'sysroot']