This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils 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]

replace mips-*n*bsd in


Rev 1.114 of gas/configure.in changed:

!       mips-*-elf* | mips-*-rtems* | mips-*-netbsd* | mips-*-openbsd*)
!                           fmt=elf ;;

to be:

!       mips-*-elf* | mips-*-rtems*)    fmt=elf ;;
!       mips-*-*n*bsd*)                 fmt=elf ;;


The latter is just too obtuse.  Somebody who wants to find the netbsd
configure fragment will have a harder time than they should.  (I did!
8-)

I'd like to see the patch below on the trunk and the branch.  This
puts the OS names back, for these targets.

Alan, you made the original change:

2002-08-09  Alan Modra  <amodra at bigpond dot net dot au>

        * configure.in: bfd_gas=yes for all i386 targets.  Formatting.
        Remove "bfd_gas=yes" from target table when covered later.
        Consolidate some entries.
        * configure: Regenerate 

While i'm all for consolidating, is there any reason to take it that
far?!


chris
--
[ gas/ChangeLog ]
2003-04-28  Chris Demetriou  <cgd at broadcom dot com>

	* configure.in (mips-*-*n*bsd*): Replace with...
	(mips-*-netbsd*, mips-*-openbsd*): These.
	* configure: Regenerate.

Index: configure.in
===================================================================
RCS file: /cvs/src/src/gas/configure.in,v
retrieving revision 1.128
diff -u -p -r1.128 configure.in
--- configure.in	1 Apr 2003 15:50:29 -0000	1.128
+++ configure.in	28 Apr 2003 20:50:43 -0000
@@ -373,7 +373,8 @@ changequote([,])dnl
       mips-*-sysv4*MP* | mips-*-gnu*)	fmt=elf em=tmips ;;
       mips-*-sysv*)			fmt=ecoff ;;
       mips-*-elf* | mips-*-rtems*)	fmt=elf ;;
-      mips-*-*n*bsd*)			fmt=elf ;;
+      mips-*-netbsd*)			fmt=elf ;;
+      mips-*-openbsd*)			fmt=elf ;;
       mips-*-vxworks*)			fmt=elf ;;
 
       mmix-*-*)				fmt=elf ;;


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