summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-03-23 23:41:24 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-03-23 23:41:24 +0000
commitd13c228316386509d72787321516497fa149dc88 (patch)
treef8ac1299093edd7c4c0f250de67c6b81bf58d23e
parent552a5d9ac1fd6846e040277a33fe3db7ac298ff7 (diff)
downloadmpv-d13c228316386509d72787321516497fa149dc88.tar.bz2
mpv-d13c228316386509d72787321516497fa149dc88.tar.xz
typo fix: Remove stray '-' from --extra-cflags option evaluation.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29044 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 74e83aacbd..e724c9cf78 100755
--- a/configure
+++ b/configure
@@ -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`