0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

Make sure that linker flags passed as configure parameters appear before

those detected by configure so that the former can override the latter.
patch by Giacomo Comes, comes naic edu


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27842 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-10-28 18:00:11 +00:00
parent 97293969b4
commit c600e40bc5

2
configure vendored
View File

@ -7723,7 +7723,7 @@ _ld_tmp=""
for I in $_libs_mplayer ; do
_tmp=`echo $I | sed -e 's/^-L.*$//'`
if test -z "$_tmp" ; then
_ld_extra="$I $_ld_extra"
_ld_extra="$_ld_extra $I"
else
_ld_tmp="$_ld_tmp $I"
fi