From ec2ceefcfa0d9e340eb0d3ecaef9be3040bddc4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Fri, 19 Dec 2025 12:13:31 +0200 Subject: [PATCH] fate.sh: Allow specifying --ar through a separate variable This avoids needing to use the extra_conf variable. That variable is problematic for setting a value that contains spaces. This adds options for another tool in the same fashion as other tools were added in 523d688c2b7d5bb535bc203a2c3705d199ddf13d. --- doc/fate_config.sh.template | 1 + tests/fate.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/doc/fate_config.sh.template b/doc/fate_config.sh.template index 73031f54e2..8cd92ae0f0 100644 --- a/doc/fate_config.sh.template +++ b/doc/fate_config.sh.template @@ -14,6 +14,7 @@ arch= cpu= toolchain= cross_prefix= +ar= as= cc= cxx= diff --git a/tests/fate.sh b/tests/fate.sh index a3195ccdf5..03257bf1b2 100755 --- a/tests/fate.sh +++ b/tests/fate.sh @@ -53,6 +53,7 @@ configure()( ${cpu:+--cpu="$cpu"} \ ${toolchain:+--toolchain="$toolchain"} \ ${cross_prefix:+--cross-prefix="$cross_prefix"} \ + ${ar:+--ar="$ar"} \ ${as:+--as="$as"} \ ${cc:+--cc="$cc"} \ ${cxx:+--cxx="$cxx"} \