summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-10-28 18:00:11 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-10-28 18:00:11 +0000
commitc600e40bc500c7126b3163dcb7f3fa476d168811 (patch)
tree668a20a537e8efc55d8e61a066c874a35dfa5012 /configure
parent97293969b40797442ec0f612b89a89ace8804561 (diff)
downloadmpv-c600e40bc500c7126b3163dcb7f3fa476d168811.tar.bz2
mpv-c600e40bc500c7126b3163dcb7f3fa476d168811.tar.xz
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
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index eccf2a8dc1..af73e6e5cc 100755
--- a/configure
+++ b/configure
@@ -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