summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2012-11-01 11:14:59 -0300
committerMichael Niedermayer <michaelni@gmx.at>2012-11-02 00:28:25 +0100
commit1475815a1a064720842ac92b4cc32af60dd8b6f6 (patch)
treeb1fcea0199cb0e19a48605eb87b051255fe559df /configure
parent099786a638cf8b3ed101759764ed1de9194aafc8 (diff)
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-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index dc1aa794e6..ae11f5d9b0 100755
--- a/configure
+++ b/configure
@@ -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)