From cbfdfca089008eb5ca931121a692475044e64f95 Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Tue, 14 Sep 2021 01:05:09 -0400 Subject: [PATCH] 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__ --- mesonbuild/compilers/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mesonbuild/compilers/__init__.py b/mesonbuild/compilers/__init__.py index 3d39c9b2f..8c5275c91 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',