Fix passing CFLAGS and LDFLAGS with = in them as configure parameters.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29138 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2009-04-04 14:17:53 +00:00
parent b901ebc9a0
commit 389853416f
1 changed files with 2 additions and 2 deletions

4
configure vendored
View File

@ -797,10 +797,10 @@ for ac_option do
;;
--extra-cflags=*)
extra_cflags=`echo $ac_option | cut -d '=' -f 2`
extra_cflags=`echo $ac_option | cut -d '=' -f 2-`
;;
--extra-ldflags=*)
extra_ldflags=`echo $ac_option | cut -d '=' -f 2`
extra_ldflags=`echo $ac_option | cut -d '=' -f 2-`
;;
--extra-libs=*)
extra_libs=`echo $ac_option | cut -d '=' -f 2`