From patchwork Sat Jun 4 02:38:57 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kaz Kojima X-Patchwork-Id: 98711 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 37809B6FBB for ; Sat, 4 Jun 2011 12:39:27 +1000 (EST) Received: (qmail 14370 invoked by alias); 4 Jun 2011 02:39:25 -0000 Received: (qmail 14361 invoked by uid 22791); 4 Jun 2011 02:39:24 -0000 X-SWARE-Spam-Status: No, hits=-2.1 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, SPF_HELO_PASS, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mo11.iij4u.or.jp (HELO mo.iij4u.or.jp) (210.138.174.79) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 04 Jun 2011 02:39:06 +0000 Received: by mo.iij4u.or.jp (mo11) id p542d4dn002269; Sat, 4 Jun 2011 11:39:04 +0900 Received: from localhost (238.152.138.210.bn.2iij.net [210.138.152.238]) by mbox.iij4u.or.jp (mbox11) id p542cv0R009340; Sat, 4 Jun 2011 11:39:04 +0900 Date: Sat, 04 Jun 2011 11:38:57 +0900 (JST) Message-Id: <20110604.113857.468170051.kkojima@rr.iij4u.or.jp> To: gcc-patches@gcc.gnu.org Subject: [patch committed] Fix build failure on sh4-unknown-linux-gnu From: Kaz Kojima Mime-Version: 1.0 X-IsSubscribed: yes 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 Hi, I've applied the attached patch under the obvious rule to fix the build failure on sh4-unknown-linux-gnu. Regards, kaz --- [libgcc] 2011-06-04 Kaz Kojima * config.host (sh*-*-linux*): Fix typo. --- ORIG/trunk/libgcc/config.host 2011-06-04 10:16:44.000000000 +0900 +++ trunk/libgcc/config.host 2011-06-04 11:08:55.000000000 +0900 @@ -574,7 +574,7 @@ sh-*-elf* | sh[12346l]*-*-elf* | \ case ${host} in sh*-*-linux*) tmake_file="${tmake_file} sh/t-linux" - md_unwind_header=sh/unwind-linux.h + md_unwind_header=sh/linux-unwind.h ;; esac ;;