diff options
author | Martin Storsjö <martin@martin.st> | 2015-07-27 09:40:28 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2015-07-27 10:44:44 +0300 |
commit | e4015b00d4e9e40dc1693a018edd51bf7a04993e (patch) | |
tree | f4740262c67ea399841b66938d8025b2bb3ded83 | |
parent | 6d3081e6c374ff7da12b07ed33d1662be1b32dbc (diff) | |
download | ffmpeg-e4015b00d4e9e40dc1693a018edd51bf7a04993e.tar.gz |
configure: Simplify, remove an unnecessary intermediate variable
Signed-off-by: Martin Storsjö <martin@martin.st>
-rwxr-xr-x | configure | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -4693,8 +4693,7 @@ EOF fi for pfx in "" host_; do - pfx_no_=${pfx%_} - varname=${pfx_no_}cc_type + varname=${pfx%_}cc_type eval "type=\$$varname" if [ $type = "msvc" ]; then check_${pfx}cc <<EOF || add_${pfx}cflags -Dinline=__inline |