This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

3.4 PATCH: Fix gcc/configure.in typo


I just noticed an error from gcc/configure:

checking whether libgloss uses STARTUP directives consistently... no
/vol/gnu/src/gcc/gcc-dist/gcc/configure[8503]: xmips-sgi-irix6.5:  not found

This results from a trivial typo in gcc/configure.in, fixed as below.

Ok for mainline?

	Rainer

-----------------------------------------------------------------------------
Rainer Orth, Faculty of Technology, Bielefeld University


Fri Feb 14 15:16:33 2003  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>

	* configure.in: Fix typo.
	* configure: Regenerate.

--- gcc/configure.in	Fri Feb 14 13:42:00 2003
+++ gcc/configure.in.new	Fri Feb 14 17:49:47 2003
@@ -2428,7 +2428,7 @@ case "$target" in
     ;;
 esac
 
-if test x$with_sysroot = x && x$host = x$target \
+if test x$with_sysroot = x && test x$host = x$target \
    && test "$prefix" != "/usr" && test "x$prefix" != "x$local_prefix" ; then
   AC_DEFINE_UNQUOTED(PREFIX_INCLUDE_DIR, "$prefix/include")
 fi


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]