# HG changeset patch # User diego # Date 1238854673 0 # Node ID 3e1105ae9cb1e465b2a0bb07b5316b8f8bcbc058 # Parent efed5bc41ca61fca906fa399c516b0229c83d138 Fix passing CFLAGS and LDFLAGS with = in them as configure parameters. diff -r efed5bc41ca6 -r 3e1105ae9cb1 configure --- a/configure Sat Apr 04 04:27:09 2009 +0000 +++ b/configure Sat Apr 04 14:17:53 2009 +0000 @@ -797,10 +797,10 @@ ;; --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`