diff options
author | Martin Storsjö <martin@martin.st> | 2013-05-28 23:00:54 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-05-29 10:37:05 +0300 |
commit | d7b9b66abb251b20c3e838bb8365f0c0251134d7 (patch) | |
tree | 8ee7b49ef79ff2cdb1f214bcf5073c2bda9ca4c4 | |
parent | 9f30fb5a773d59298d8d45c741b3fd971d84c97b (diff) | |
download | ffmpeg-d7b9b66abb251b20c3e838bb8365f0c0251134d7.tar.gz |
fate.sh: Allow specifying --as via a specific variable
This simplifies specifying a value containing spaces for this
parameter.
Signed-off-by: Martin Storsjö <martin@martin.st>
-rw-r--r-- | doc/fate.texi | 1 | ||||
-rwxr-xr-x | tests/fate.sh | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/doc/fate.texi b/doc/fate.texi index f076acdc05..ec279a2c89 100644 --- a/doc/fate.texi +++ b/doc/fate.texi @@ -126,6 +126,7 @@ build_only= # set to "yes" for a compile-only instance that skips tests arch= cpu= cross_prefix= +as= cc= target_os= sysroot= diff --git a/tests/fate.sh b/tests/fate.sh index ac31c0f535..de59c22e26 100755 --- a/tests/fate.sh +++ b/tests/fate.sh @@ -48,6 +48,7 @@ configure()( ${arch:+--arch=$arch} \ ${cpu:+--cpu="$cpu"} \ ${cross_prefix:+--cross-prefix="$cross_prefix"} \ + ${as:+--as="$as"} \ ${cc:+--cc="$cc"} \ ${ld:+--ld="$ld"} \ ${target_os:+--target-os="$target_os"} \ |