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]

[committed] Fix bug in unsupported targets list in config.gcc


This just bit someone trying to test on a DYNIX/ptx system.  
No interference with configury on i686-pc-linux-gnu, so I've got my
shell patterns right.  Committing as obvious.

	* config.gcc: Narrow unsupported target match to avoid clobbering
	i?86-sequent-sysv4*.

Index: config.gcc
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config.gcc,v
retrieving revision 1.346
diff -u -r1.346 config.gcc
--- config.gcc	26 Aug 2003 06:54:13 -0000	1.346
+++ config.gcc	29 Aug 2003 17:28:14 -0000
@@ -245,7 +245,8 @@
 # should be in alphabetical order.
 case $machine in
    alpha*-*-linux*libc1*		\
- | i[34567]86-sequent-sysv*		\
+ | i[34567]86-sequent-sysv		\
+ | i[34567]86-sequent-sysv[!4]*		\
  | i[34567]86-go32-*			\
  | i[34567]86-*-go32*			\
  | m68k-*-linux*aout*			\

-- 
Nathanael Nerode  <neroden at gcc.gnu.org>
http://home.twcny.rr.com/nerode/neroden/fdl.html


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