aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/backend/backends.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2020-12-08 10:56:44 -0800
committerDylan Baker <dylan@pnwbakers.com>2021-01-11 11:15:06 -0800
commitf202da0689795ba4330581e69a879f089e169f6c (patch)
tree5c86f99a03a466d20234cc270cd6103717cfc2e0 /mesonbuild/backend/backends.py
parent4580433b8255b9f69dfbd39a28c21bc1ec785bcf (diff)
downloadmeson-f202da0689795ba4330581e69a879f089e169f6c.zip
meson-f202da0689795ba4330581e69a879f089e169f6c.tar.gz
meson-f202da0689795ba4330581e69a879f089e169f6c.tar.bz2
use PEP8 style naming for LANGUAGES_USING_* as well
Diffstat (limited to 'mesonbuild/backend/backends.py')
-rw-r--r--mesonbuild/backend/backends.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/backend/backends.py b/mesonbuild/backend/backends.py
index 9bb870c..6dad189 100644
--- a/mesonbuild/backend/backends.py
+++ b/mesonbuild/backend/backends.py
@@ -29,7 +29,7 @@ from .. import build
from .. import dependencies
from .. import mesonlib
from .. import mlog
-from ..compilers import languages_using_ldflags
+from ..compilers import LANGUAGES_USING_LDFLAGS
from ..mesonlib import (
File, MachineChoice, MesonException, OptionType, OrderedSet, OptionOverrideProxy,
classify_unity_sources, unholder, OptionKey
@@ -480,7 +480,7 @@ class Backend:
def get_external_rpath_dirs(self, target):
dirs = set()
args = []
- for lang in languages_using_ldflags:
+ for lang in LANGUAGES_USING_LDFLAGS:
try:
args.extend(self.environment.coredata.get_external_link_args(target.for_machine, lang))
except Exception: