Skip to content

Commit

Permalink
remove quotes around $pkg_flags
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Voigt authored and Alexander Voigt committed Aug 19, 2016
1 parent 9034a8e commit 36fba35
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions configure
Expand Up @@ -1823,15 +1823,15 @@ find_symbol_using_pkgconfig() {
logmsg "pkg-config does not manage $pkg"
return 1
}
ldpaths=$(pkg-config "$pkg_flags" --libs-only-L "$pkg")
libnames=$(pkg-config "$pkg_flags" --libs-only-l "$pkg")
ldpaths=$(pkg-config ${pkg_flags} --libs-only-L "$pkg")
libnames=$(pkg-config ${pkg_flags} --libs-only-l "$pkg")
shift
for symbol; do
for dopt in $default_lib_paths $ldpaths; do
for lopt in $libnames; do
if check_symbol "$symbol" "$lopt" "$dopt"; then
logmsg "found $symbol in $dopt $lopt"
linker_flags=$(pkg-config "$pkg_flags" --libs "$pkg")
linker_flags=$(pkg-config ${pkg_flags} --libs "$pkg")
continue 3
fi
done
Expand Down

0 comments on commit 36fba35

Please sign in to comment.