diff mbox series

toolchain/Config.in: improve gcc bug 83143 condition

Message ID 20220729204457.7266-2-giulio.benetti@benettiengineering.com
State Accepted
Headers show
Series toolchain/Config.in: improve gcc bug 83143 condition | expand

Commit Message

Giulio Benetti July 29, 2022, 8:44 p.m. UTC
This makes the condition easier to read and it's easier to maintain the
gcc bug too because we don't have to take care about new gcc versions.

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
 toolchain/Config.in | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
diff mbox series

Patch

diff --git a/toolchain/Config.in b/toolchain/Config.in
index d2fc347d36..507075a351 100644
--- a/toolchain/Config.in
+++ b/toolchain/Config.in
@@ -147,9 +147,9 @@  config BR2_TOOLCHAIN_HAS_GCC_BUG_68485
 # it still not been fixed yet.
 config BR2_TOOLCHAIN_HAS_GCC_BUG_83143
 	bool
-	default y if BR2_sh
-	depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_10 || BR2_TOOLCHAIN_GCC_AT_LEAST_11 || \
-		   BR2_TOOLCHAIN_GCC_AT_LEAST_12
+	default y if !BR2_TOOLCHAIN_GCC_AT_LEAST_10
+	default y if BR2_TOOLCHAIN_GCC_AT_LEAST_11
+	depends on BR2_sh
 
 # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85180. This bug no
 # longer exists in gcc 8.x.