From patchwork Mon May 30 16:28:24 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Sandiford X-Patchwork-Id: 97936 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 4EA39B6F70 for ; Tue, 31 May 2011 02:28:56 +1000 (EST) Received: (qmail 22380 invoked by alias); 30 May 2011 16:28:53 -0000 Received: (qmail 22366 invoked by uid 22791); 30 May 2011 16:28:51 -0000 X-SWARE-Spam-Status: No, hits=-2.2 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, RFC_ABUSE_POST X-Spam-Check-By: sourceware.org Received: from mail-wy0-f175.google.com (HELO mail-wy0-f175.google.com) (74.125.82.175) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 30 May 2011 16:28:29 +0000 Received: by wye20 with SMTP id 20so3231835wye.20 for ; Mon, 30 May 2011 09:28:27 -0700 (PDT) Received: by 10.216.81.203 with SMTP id m53mr2909750wee.9.1306772907575; Mon, 30 May 2011 09:28:27 -0700 (PDT) Received: from localhost (rsandifo.gotadsl.co.uk [82.133.89.107]) by mx.google.com with ESMTPS id en1sm3158445wbb.1.2011.05.30.09.28.25 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 30 May 2011 09:28:26 -0700 (PDT) From: Richard Sandiford To: Rainer Orth Mail-Followup-To: Rainer Orth , gcc-patches@gcc.gnu.org, tech@openbsd.org, rdsandiford@googlemail.com Cc: gcc-patches@gcc.gnu.org, tech@openbsd.org Subject: Re: Deprecating mips-openbsd References: <871uzps1sh.fsf@firetop.home> <4DDB7D08.1020309@redhat.com> <4DDE59E5.1010700@redhat.com> <87k4dbgsem.fsf@firetop.home> Date: Mon, 30 May 2011 17:28:24 +0100 In-Reply-To: (Rainer Orth's message of "Mon, 30 May 2011 10:09:59 +0200") Message-ID: <87zkm4i253.fsf@firetop.home> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) MIME-Version: 1.0 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Rainer Orth writes: > Richard Sandiford writes: >> Index: gcc/config.gcc >> =================================================================== >> --- gcc/config.gcc 2011-05-28 09:00:32.000000000 +0100 >> +++ gcc/config.gcc 2011-05-28 09:00:45.000000000 +0100 >> @@ -240,6 +240,7 @@ case ${target} in >> i[34567]86-*-interix3* \ >> | score-* \ >> | *-*-solaris2.8* \ >> + | mips*-*-openbsd* \ >> ) >> if test "x$enable_obsolete" != xyes; then >> echo "*** Configuration ${target} is obsolete." >&2 > > Would you mind keeping the list sorted alphabetically? Sorry, fixed as follows. Richard gcc/ * config.gcc: Keep obselete list sorted. Index: gcc/config.gcc =================================================================== --- gcc/config.gcc 2011-05-30 17:26:51.000000000 +0100 +++ gcc/config.gcc 2011-05-30 17:26:58.000000000 +0100 @@ -238,9 +238,9 @@ md_file= # Obsolete configurations. case ${target} in i[34567]86-*-interix3* \ + | mips*-*-openbsd* \ | score-* \ | *-*-solaris2.8* \ - | mips*-*-openbsd* \ ) if test "x$enable_obsolete" != xyes; then echo "*** Configuration ${target} is obsolete." >&2