typo fix: Remove stray '-' from --extra-cflags option evaluation.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29044 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2009-03-23 23:41:24 +00:00
parent 552a5d9ac1
commit d13c228316
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -799,7 +799,7 @@ 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-libs=*)
_extra_libs=`echo $ac_option | cut -d '=' -f 2`