aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/backend/backends.py
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2018-06-19 09:47:25 +0530
committerNirbheek Chauhan <nirbheek.chauhan@gmail.com>2018-06-20 11:27:08 +0000
commit58ae2c9a8c52bcf881682286cc4393d85c87a07f (patch)
tree111bfe05c11a8f5ddfe4c9a39aee943495295912 /mesonbuild/backend/backends.py
parentd73748815014b8b4bbbd7fe7fb8b50b8a75aecfc (diff)
downloadmeson-58ae2c9a8c52bcf881682286cc4393d85c87a07f.zip
meson-58ae2c9a8c52bcf881682286cc4393d85c87a07f.tar.gz
meson-58ae2c9a8c52bcf881682286cc4393d85c87a07f.tar.bz2
Rename clike_langs to clink_langs for clarity
D is not a 'c-like' language, but it can link to C libraries. The same might be true of Rust in the future and Go when we add support for it. This contains no functionality changes.
Diffstat (limited to 'mesonbuild/backend/backends.py')
-rw-r--r--mesonbuild/backend/backends.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/backend/backends.py b/mesonbuild/backend/backends.py
index 75920f6..354d25a 100644
--- a/mesonbuild/backend/backends.py
+++ b/mesonbuild/backend/backends.py
@@ -338,7 +338,7 @@ class Backend:
return self.build.static_cross_linker, []
else:
return self.build.static_linker, []
- l, stdlib_args = target.get_clike_dynamic_linker_and_stdlibs()
+ l, stdlib_args = target.get_clink_dynamic_linker_and_stdlibs()
return l, stdlib_args
@staticmethod