diff options
author | Sam James <sam@gentoo.org> | 2024-11-19 14:59:53 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-11-19 14:59:53 +0000 |
commit | 14b4ce60bae26089b0b80f9f629900bf7721e9f5 (patch) | |
tree | a10b960c0d348ca5d29c3cc1809d000d199bfcfa /eclass | |
parent | toolchain.eclass: fix libdiagnostics handling (diff) | |
download | gentoo-14b4ce60bae26089b0b80f9f629900bf7721e9f5.tar.gz gentoo-14b4ce60bae26089b0b80f9f629900bf7721e9f5.tar.bz2 gentoo-14b4ce60bae26089b0b80f9f629900bf7721e9f5.zip |
toolchain.eclass: fix libdiagnostics handling (more)
I continue to mix up how tc_version_is_at_least works. One day I'll
change it...
Closes: https://bugs.gentoo.org/944007
Fixes: f6a974f8f2378c6c6a83345c101afce233fdf1d7
Fixes: b923a4c0d1a330e40f0a05f3bc94bb4f32ce1cbb
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 e28479dc44af..02db921ce133 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1770,7 +1770,7 @@ toolchain_src_configure() { --with-system-zlib ) - if tc_version_is_at_least 15.0.0_pre20241124 ; then + if tc_version_is_at_least 15.0.0_pre20241124 ${PV} ; then confgcc_jit+=( $(use_enable libdiagnostics) ) fi |