1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-12-20 14:16:06 +02:00

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 523d688c2b.
This commit is contained in:
Martin Storsjö
2025-12-19 12:13:31 +02:00
parent 06a17fdafc
commit ec2ceefcfa
2 changed files with 2 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ arch=
cpu=
toolchain=
cross_prefix=
ar=
as=
cc=
cxx=

View File

@@ -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"} \