diff options
author | Måns Rullgård <mans@mansr.com> | 2008-11-23 12:36:31 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2008-11-23 12:36:31 +0000 |
commit | 88268e944a4b678248734fdbccf371327ea5a253 (patch) | |
tree | a1965d393fbf45c5aef991b84025440a0599b9f3 | |
parent | a8e41613333fac751fee706675939c4425033ff1 (diff) | |
download | ffmpeg-88268e944a4b678248734fdbccf371327ea5a253.tar.gz |
configure: simplify set_default function
Originally committed as revision 15911 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -362,7 +362,7 @@ disabled_any(){ set_default(){ for opt; do - eval test -z "\$$opt" && eval $opt=\$${opt}_default + eval : \${$opt:=\$${opt}_default} done } |