configure: do not quote arguments passed to filter{,_out} in check_ld.

This fixes the following error:
./configure: eval: line 417: syntax error near unexpected token `-lcdio_cdda'
[...]
Broken by 66a1ccd74 when doing, e.g., ./configure --enable-gpl --enable-libcdio.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Alexis Ballier 2012-10-17 15:52:11 -03:00 committed by Michael Niedermayer
parent 35daf3ca81
commit 916352f282
1 changed files with 2 additions and 2 deletions

4
configure vendored
View File

@ -769,8 +769,8 @@ check_ld(){
log check_ld "$@"
type=$1
shift 1
flags=$(filter_out '-l*' "$@")
libs=$(filter '-l*' "$@")
flags=$(filter_out '-l*' $@)
libs=$(filter '-l*' $@)
check_$type $($cflags_filter $flags) || return
flags=$($ldflags_filter $flags)
libs=$($ldflags_filter $libs)