changeset 29009:4fffd4de5c4a

typo fix: Remove stray '-' from --extra-cflags option evaluation.
author diego
date Mon, 23 Mar 2009 23:41:24 +0000
parents 25305abe1458
children 48ec993fc291
files configure
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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`