From 916352f282855e3e4e86a39df9452fead2aa0771 Mon Sep 17 00:00:00 2001 From: Alexis Ballier Date: Wed, 17 Oct 2012 15:52:11 -0300 Subject: [PATCH] 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 --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 0a63aaf54a..70f3b8e788 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)