[FFmpeg-cvslog] configure: do not quote arguments passed to filter{, _out} in check_ld.

Alexis Ballier git at videolan.org
Wed Oct 17 23:30:50 CEST 2012


ffmpeg | branch: master | Alexis Ballier <aballier at gentoo.org> | Wed Oct 17 15:52:11 2012 -0300| [916352f282855e3e4e86a39df9452fead2aa0771] | committer: Michael Niedermayer

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 at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=916352f282855e3e4e86a39df9452fead2aa0771
---

 configure |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure b/configure
index 0a63aaf..70f3b8e 100755
--- a/configure
+++ b/configure
@@ -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)



More information about the ffmpeg-cvslog mailing list