From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22982 invoked by alias); 28 Apr 2003 20:53:15 -0000 Mailing-List: contact binutils-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sources.redhat.com Received: (qmail 22972 invoked from network); 28 Apr 2003 20:53:13 -0000 Received: from unknown (HELO mms3.broadcom.com) (63.70.210.38) by sources.redhat.com with SMTP; 28 Apr 2003 20:53:13 -0000 Received: from 63.70.210.1 by mms3.broadcom.com with ESMTP (Broadcom SMTP Relay (MMS v5.5.2)); Mon, 28 Apr 2003 13:53:13 -0700 Received: from mail-sj1-5.sj.broadcom.com (mail-sj1-5.sj.broadcom.com [10.16.128.236]) by mon-irva-11.broadcom.com (8.9.1/8.9.1) with ESMTP id NAA09694; Mon, 28 Apr 2003 13:52:47 -0700 (PDT) Received: from dt-sj3-118.sj.broadcom.com (dt-sj3-118 [10.21.64.118]) by mail-sj1-5.sj.broadcom.com (8.12.9/8.12.9/SSF) with ESMTP id h3SKr5ov020770; Mon, 28 Apr 2003 13:53:05 -0700 (PDT) Received: (from cgd@localhost) by dt-sj3-118.sj.broadcom.com ( 8.9.1/SJ8.9.1) id NAA23900; Mon, 28 Apr 2003 13:53:05 -0700 (PDT) To: binutils@sources.redhat.com cc: amodra@bigpond.net.au Subject: replace mips-*n*bsd in From: cgd@broadcom.com Date: Mon, 28 Apr 2003 20:53:00 -0000 Message-ID: MIME-Version: 1.0 X-WSS-ID: 12B34B332632688-01-01 Content-Type: text/plain Content-Transfer-Encoding: 7bit X-SW-Source: 2003-04/txt/msg00589.txt.bz2 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 * 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 * 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 ;;