diff options
author | Alexis Ballier <aballier@gentoo.org> | 2012-11-01 11:14:59 -0300 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-11-02 00:28:25 +0100 |
commit | 1475815a1a064720842ac92b4cc32af60dd8b6f6 (patch) | |
tree | b1fcea0199cb0e19a48605eb87b051255fe559df /configure | |
parent | 099786a638cf8b3ed101759764ed1de9194aafc8 (diff) | |
download | ffmpeg-1475815a1a064720842ac92b4cc32af60dd8b6f6.tar.gz |
Apply again [916352f282855e3e4e86a39df9452fead2aa0771] that got lost in the merges.
Do not quote second argument to filter{,_out} in check_ld. We want to keep/remove all the space-separated words matching the -l* pattern, not keep everything if the whole argument begins with -l and remove it otherwise.
This also fixes errors like:
./configure: eval: line 418: syntax error near unexpected token `-l*'
./configure: eval: line 418: `case in -l*) ;; *) echo ;; esac'
when run with ./configure --enable-openal
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -768,8 +768,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) |