summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-04-04 14:17:53 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-04-04 14:17:53 +0000
commit389853416f01d42fda2ed754d34b5533790fcbfb (patch)
tree70e6f453607efc93c0ac4b260893d891ca18c845
parentb901ebc9a0ecc84a5c1c866b21b0fa95a495173c (diff)
downloadmpv-389853416f01d42fda2ed754d34b5533790fcbfb.tar.bz2
mpv-389853416f01d42fda2ed754d34b5533790fcbfb.tar.xz
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
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 427566bfb6..f01bf95d02 100755
--- a/configure
+++ b/configure
@@ -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`