aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2021-09-14 01:05:09 -0400
committerEli Schwartz <eschwartz@archlinux.org>2021-09-14 15:50:29 -0400
commitcbfdfca089008eb5ca931121a692475044e64f95 (patch)
tree0849f672d7a8cb11eb9cb12c322a5fbe67aacb90
parentc43bad236942d5b63aadaef04c5fe01d017ccc9b (diff)
downloadmeson-cbfdfca089008eb5ca931121a692475044e64f95.zip
meson-cbfdfca089008eb5ca931121a692475044e64f95.tar.gz
meson-cbfdfca089008eb5ca931121a692475044e64f95.tar.bz2
compilers: publicly export one more constant
It is imported from a subpackage in __init__ alongside a big list of other things which are all exported. And elsewhere, this import is re-imported by other code. It's pretty clearly an oversight that it didn't get added to __all__
-rw-r--r--mesonbuild/compilers/__init__.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/compilers/__init__.py b/mesonbuild/compilers/__init__.py
index 3d39c9b..8c5275c 100644
--- a/mesonbuild/compilers/__init__.py
+++ b/mesonbuild/compilers/__init__.py
@@ -33,6 +33,7 @@ __all__ = [
'is_source',
'is_known_suffix',
'lang_suffixes',
+ 'LANGUAGES_USING_LDFLAGS',
'sort_clink',
'compiler_from_language',