diff options
author | Sam James <sam@gentoo.org> | 2024-12-12 07:34:20 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-12-12 07:46:55 +0000 |
commit | c048402e74be87600d1842702d79f778d5b59e9c (patch) | |
tree | ab1377d8f5c08cda174982a830b109852f94bd0f /eclass | |
parent | dev-ruby/faraday: add 2.12.2 (diff) | |
download | gentoo-c048402e74be87600d1842702d79f778d5b59e9c.tar.gz gentoo-c048402e74be87600d1842702d79f778d5b59e9c.tar.bz2 gentoo-c048402e74be87600d1842702d79f778d5b59e9c.zip |
toolchain.eclass: allow overriding GCC_RUN_FIXINCLUDES
Useful for testing hacks.
Bug: https://bugs.gentoo.org/933282
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 8e91816735a9..55db818f6233 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -204,7 +204,7 @@ GCCMICRO=$(ver_cut 3 ${GCC_PV}) # @INTERNAL # @DESCRIPTION: # Controls whether fixincludes should be used. -GCC_RUN_FIXINCLUDES=0 +: "${GCC_RUN_FIXINCLUDES:=0}" tc_use_major_version_only() { local use_major_version_only=0 |