From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23043 invoked by alias); 26 Aug 2014 09:22:27 -0000 Mailing-List: contact binutils-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sourceware.org Received: (qmail 23026 invoked by uid 89); 26 Aug 2014 09:22:26 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.8 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Tue, 26 Aug 2014 09:22:26 +0000 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s7Q9MOXf012193 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Tue, 26 Aug 2014 05:22:24 -0400 Received: from littlehelper.redhat.com (vpn1-4-108.ams2.redhat.com [10.36.4.108]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s7Q9MMM3032285 (version=TLSv1/SSLv3 cipher=AES128-GCM-SHA256 bits=128 verify=NO) for ; Tue, 26 Aug 2014 05:22:23 -0400 From: Nick Clifton To: binutils@sourceware.org Subject: Commit: OR1K: Fix typo Date: Tue, 26 Aug 2014 09:22:00 -0000 Message-ID: <87r403ehbm.fsf@redhat.com> MIME-Version: 1.0 Content-Type: text/plain X-IsSubscribed: yes X-SW-Source: 2014-08/txt/msg00251.txt.bz2 Hi Guys, I am applying the patch below to fix a small typo in the pattern matching for the or1knd cpu in config.bfd. Cheers Nick bfd/ChangeLog 2014-08-26 Nick Clifton * config.bfd: Fix typo in or1knd selection. diff --git a/bfd/config.bfd b/bfd/config.bfd index 3272076..4468e4a 100644 --- a/bfd/config.bfd +++ b/bfd/config.bfd @@ -1177,7 +1177,7 @@ case "${targ}" in targ_defvec=or1k_elf32_vec ;; - or1knd-*-elf | or1knd-*-linux* | or1k-*-rtems*) + or1knd-*-elf | or1knd-*-linux* | or1knd-*-rtems*) targ_defvec=or1k_elf32_vec ;;