[MPlayer-cvslog] r29138 - trunk/configure

diego subversion at mplayerhq.hu
Sat Apr 4 16:17:54 CEST 2009


Author: diego
Date: Sat Apr  4 16:17:53 2009
New Revision: 29138

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

Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	Sat Apr  4 06:27:09 2009	(r29137)
+++ trunk/configure	Sat Apr  4 16:17:53 2009	(r29138)
@@ -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`


More information about the MPlayer-cvslog mailing list