# HG changeset patch # User diego # Date 1225216811 0 # Node ID 2988c38b6620cb57a5bb5e9f86ab4f79b7517348 # Parent 3ac3d3a51934426b90ea913c091af56a7753b91d 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 diff -r 3ac3d3a51934 -r 2988c38b6620 configure --- a/configure Mon Oct 27 22:51:22 2008 +0000 +++ b/configure Tue Oct 28 18:00:11 2008 +0000 @@ -7723,7 +7723,7 @@ 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