aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/dependencies.py
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2017-02-19 03:48:22 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2017-02-19 03:50:43 +0530
commit2478bb144d69037250cd8d2e6e0a827a8582671f (patch)
tree752ec5700a6998f06d38f065cdfd52d52bd5aa0d /mesonbuild/dependencies.py
parent940b8a2e93a551f7ef4c20568061545f77d0a055 (diff)
downloadmeson-2478bb144d69037250cd8d2e6e0a827a8582671f.zip
meson-2478bb144d69037250cd8d2e6e0a827a8582671f.tar.gz
meson-2478bb144d69037250cd8d2e6e0a827a8582671f.tar.bz2
rpm: We no longer provide the full path to a library
Ever since we changed how we do library searching, the full path to the library has not been available under `.fullpath`. This has been broken for at least a year...
Diffstat (limited to 'mesonbuild/dependencies.py')
-rw-r--r--mesonbuild/dependencies.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/mesonbuild/dependencies.py b/mesonbuild/dependencies.py
index 5997611..e4317f1 100644
--- a/mesonbuild/dependencies.py
+++ b/mesonbuild/dependencies.py
@@ -564,6 +564,9 @@ class ExternalLibrary(Dependency):
def found(self):
return self.is_found
+ def get_name(self):
+ return self.name
+
def get_link_args(self):
return self.link_args