# HG changeset patch # User diego # Date 1237851684 0 # Node ID 4fffd4de5c4aa024c8a5ff63ae56bf663a2a54b6 # Parent 25305abe1458dadc588576ad8bec4cd8dc44c76b typo fix: Remove stray '-' from --extra-cflags option evaluation. diff -r 25305abe1458 -r 4fffd4de5c4a configure --- a/configure Mon Mar 23 23:37:51 2009 +0000 +++ b/configure Mon Mar 23 23:41:24 2009 +0000 @@ -799,7 +799,7 @@ ;; --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`