From 55f96057c6d676c17f76c3210bdd0cf614399121 Mon Sep 17 00:00:00 2001 From: Jan Vaclav Date: Wed, 3 Dec 2025 10:22:57 +0100 Subject: [PATCH] build/configure_for_system: disable building with team on rhel10+ --- contrib/fedora/rpm/configure-for-system.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/contrib/fedora/rpm/configure-for-system.sh b/contrib/fedora/rpm/configure-for-system.sh index b5dee01a43..b5b92d3621 100755 --- a/contrib/fedora/rpm/configure-for-system.sh +++ b/contrib/fedora/rpm/configure-for-system.sh @@ -293,6 +293,10 @@ if [ -z "$P_MODEM_MANAGER_1" ] ; then fi fi +if [ -z "$TEAM" ] && [ "$P_RHEL" -ge 10 ] ; then + P_TEAM=0 +fi + if bool "$P_DEBUG" ; then P_CFLAGS="-g -Og -fexceptions${P_CFLAGS:+ }$P_CFLAGS" else