commit bd5c02afe931a43366951424a4ddb3dcd140b152
parent a9c40a28c53351e139a2443daed6ed53e1599b9c
Author: Nika Layzell <nika@thelayzells.com>
Date: Thu, 2 Oct 2025 16:32:34 +0000
Bug 1992033 - Fix incorrect STL hardening flag configure variable, r=firefox-build-system-reviewers,sergesanspaille
The STL_HARDENING_FLAGS config variable is defined with a MOZ_ prefix in
toolchain.configure.
Differential Revision: https://phabricator.services.mozilla.com/D267262
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/python/mozbuild/mozbuild/frontend/context.py b/python/mozbuild/mozbuild/frontend/context.py
@@ -564,7 +564,7 @@ class CompileFlags(TargetCompileFlags):
("STL", context.config.substs.get("STL_FLAGS"), ("CXXFLAGS",)),
(
"STL_HARDENING",
- context.config.substs.get("STL_HARDENING_FLAGS"),
+ context.config.substs.get("MOZ_STL_HARDENING_FLAGS"),
("CXXFLAGS",),
),
(