diff options
author | Jonas Bechtel <bechtel@linux-gbm7.(none)> | 2013-01-13 21:45:15 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-01-18 10:30:43 +0100 |
commit | a003c5bd4ff1846edba0518306f8091c14041c96 (patch) | |
tree | 50c3797a768eb2bc4dd0a09d2bf1977080a1eba4 /configure | |
parent | d270c3202539e8364c46410e15f7570800e33343 (diff) | |
download | ffmpeg-a003c5bd4ff1846edba0518306f8091c14041c96.tar.gz |
Fix opencv detection.
This commit changes the ".so" argument placement in check_ld sub-program.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -789,8 +789,8 @@ check_ld(){ log check_ld "$@" type=$1 shift 1 - flags=$(filter_out '-l*' $@) - libs=$(filter '-l*' $@) + flags=$(filter_out '-l*|*.so' $@) + libs=$(filter '-l*|*.so' $@) check_$type $($cflags_filter $flags) || return flags=$($ldflags_filter $flags) libs=$($ldflags_filter $libs) |