Obvious fix for configure in combined-tree builds

Daniel Jacobowitz drow@false.org
Tue May 17 15:08:00 GMT 2005


I noticed an error in my logs the last time I built with an in-tree ld.
Committed as obvious.

-- 
Daniel Jacobowitz
CodeSourcery, LLC

2005-05-17  Daniel Jacobowitz  <dan@codesourcery.com>

	* configure.ac: Remove spaces around assignment to
	gcc_cv_ld_sysroot.
	* configure: Regenerated.

Index: configure.ac
===================================================================
RCS file: /home/drow/rsync/gcc/gcc/gcc/configure.ac,v
retrieving revision 2.111
diff -u -p -r2.111 configure.ac
--- configure.ac	8 May 2005 16:57:49 -0000	2.111
+++ configure.ac	17 May 2005 14:34:44 -0000
@@ -3067,7 +3067,7 @@ AC_CACHE_CHECK(linker --sysroot support,
   [gcc_cv_ld_sysroot=no
   if test $in_tree_ld = yes ; then
       if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 16 -o "$gcc_cv_gld_major_version" -gt 2 ; then
-        gcc_cv_ld_sysroot = yes
+        gcc_cv_ld_sysroot=yes
       fi
   elif test x$gcc_cv_ld != x; then 
     if $gcc_cv_ld --help 2>/dev/null | grep sysroot > /dev/null; then



More information about the Gcc-patches mailing list