------- Additional Comments From dje at gcc dot gnu dot org 2005-01-12 20:31 ------- config-ml.in see the option surrounded by single quotes and it does not match.
Index: config-ml.in =================================================================== RCS file: /cvs/gcc/gcc/config-ml.in,v retrieving revision 1.32 diff -c -p -r1.32 config-ml.in *** config-ml.in 7 Nov 2004 23:37:28 -0000 1.32 --- config-ml.in 12 Jan 2005 20:28:36 -0000 *************** ml_realsrcdir=${srcdir} *** 108,113 **** --- 108,118 ---- ml_verbose=--verbose for option in ${ac_configure_args} do + # strip single quotes added unconditionally by autoconf 2.59 + case $option in + \'*\') option=`echo $option | sed -e s/^\'// -e s/\'$//` + esac + case $option in --*) ;; -*) option=-$option ;; -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18033