From d7cf877ee216a1bc210b6f67f7d4d9effbd23837 Mon Sep 17 00:00:00 2001 From: Krzesimir Nowak Date: Tue, 10 Mar 2026 15:06:18 +0100 Subject: [PATCH] build_library/toolchain_util.sh: Quiet the deprecation warning The warning was: gcc-config: the --nocolor option is deprecated by gentoo-functions; please set NO_COLOR=1 instead Probably started showing up after the recent update of gentoo-functions. Signed-off-by: Krzesimir Nowak --- build_library/toolchain_util.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_library/toolchain_util.sh b/build_library/toolchain_util.sh index ce2a662283..8d86ff515c 100644 --- a/build_library/toolchain_util.sh +++ b/build_library/toolchain_util.sh @@ -493,7 +493,7 @@ gcc_get_latest_profile() { local prefix=${1} local suffix=${2+-${2}} local status - gcc-config --list-profiles --nocolor | \ + NO_COLOR=1 gcc-config --list-profiles | \ sed -e 's/^\s*//' | \ cut -d' ' -f2 | \ grep "^${prefix}-[0-9\\.]*${suffix}$" | \