aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/compilers.py
diff options
context:
space:
mode:
authorDan Kegel <dank@kegel.com>2020-05-07 10:15:06 -0700
committerDan Kegel <dank@kegel.com>2020-05-16 20:25:58 +0000
commitd7235c5905fa98207d90f3ad34bf590493498d5b (patch)
treec93233a31beaefd89fdd9c18e4e566c7918a2b1e /mesonbuild/compilers/compilers.py
parentefb86088bcf8960db440eadcd11c0e073c80ab52 (diff)
downloadmeson-d7235c5905fa98207d90f3ad34bf590493498d5b.zip
meson-d7235c5905fa98207d90f3ad34bf590493498d5b.tar.gz
meson-d7235c5905fa98207d90f3ad34bf590493498d5b.tar.bz2
Let .pc files specify rpath.
Fixes #4027
Diffstat (limited to 'mesonbuild/compilers/compilers.py')
-rw-r--r--mesonbuild/compilers/compilers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py
index 3d3a503..b2bea26 100644
--- a/mesonbuild/compilers/compilers.py
+++ b/mesonbuild/compilers/compilers.py
@@ -1077,7 +1077,7 @@ class Compiler:
def build_rpath_args(self, env: 'Environment', build_dir: str, from_dir: str,
rpath_paths: str, build_rpath: str,
- install_rpath: str) -> T.List[str]:
+ install_rpath: str) -> T.Tuple[T.List[str], T.Set[bytes]]:
return self.linker.build_rpath_args(
env, build_dir, from_dir, rpath_paths, build_rpath, install_rpath)