From 389853416f01d42fda2ed754d34b5533790fcbfb Mon Sep 17 00:00:00 2001 From: diego Date: Sat, 4 Apr 2009 14:17:53 +0000 Subject: 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 --- configure | 4 ++-- 1 file 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` -- cgit v1.2.3