From patchwork Wed Dec 19 16:38:37 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matthias Klose X-Patchwork-Id: 207457 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 626872C0089 for ; Thu, 20 Dec 2012 03:39:11 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1356539952; h=Comment: DomainKey-Signature:Received:Received:Received:Received: Message-ID:Date:From:User-Agent:MIME-Version:To:Subject: Content-Type:Content-Transfer-Encoding:Mailing-List:Precedence: List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender: Delivered-To; bh=hByOfTJaNkwWefIcqhK7QAuwgHU=; b=UmGPX8eUle5ZYxz RmgNyzLUyD3vXod1I0iszdgdpOJf5lp8S86HhXh3VQKz7gZn0JCFT3nKS3ipoI8F SnT5PiQNgLsoGMkjrQGDWx2EtCBKRxEkiQ1n8jJIP5XixeyBjzkx+3ZhdlBJJLqA M7pqpno/hI7iqryCde8SGeVwDFG0= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:Message-ID:Date:From:User-Agent:MIME-Version:To:Subject:Content-Type:Content-Transfer-Encoding:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=aePRDOSJ8AbfePPpEmvJt0Hk/uy6dOUrQJvH7MAYoKGW7yqvbiD967BYmbXPXZ l36K452xZKCjzXKcU36QobIxGbBsPqvm5fIKuDxiW/dpwMwV08H8eQ+o2JWFsYUg wLKO+U1NDRH1FgLKhC5JWmhh3fVdBYHIqEkCvZePpX+tk=; Received: (qmail 14258 invoked by alias); 19 Dec 2012 16:39:03 -0000 Received: (qmail 14244 invoked by uid 22791); 19 Dec 2012 16:39:01 -0000 X-SWARE-Spam-Status: No, hits=-2.2 required=5.0 tests=AWL, BAYES_00, KHOP_RCVD_UNTRUST, RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from youngberry.canonical.com (HELO youngberry.canonical.com) (91.189.89.112) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 19 Dec 2012 16:38:42 +0000 Received: from dslb-088-073-108-045.pools.arcor-ip.net ([88.73.108.45] helo=[192.168.42.216]) by youngberry.canonical.com with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1TlMfI-0003NR-L4 for gcc-patches@gcc.gnu.org; Wed, 19 Dec 2012 16:38:40 +0000 Message-ID: <50D1ED8D.6090506@ubuntu.com> Date: Wed, 19 Dec 2012 17:38:37 +0100 From: Matthias Klose User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: GCC Patches Subject: [patch] Fix typo in multiarch definition for kfreebsd 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 Fixes a typo in the multiarch definition for kfreebsd. Committed as obvious. Matthias 2012-12-19 Matthias Klose * config/i386/t-kfreebsd (MULTIARCH_DIRNAME): Add comma to separate arguments in make function. +MULTILIB_OSDIRNAMES := $(filter-out mx32=%,$(subst linux,$(KFREEBSD_OS),$(MULTILIB_OSDIRNAMES))) Index: config/i386/t-kfreebsd =================================================================== --- config/i386/t-kfreebsd (Revision 194615) +++ config/i386/t-kfreebsd (Arbeitskopie) @@ -2,4 +2,4 @@ # MULTILIB_OSDIRNAMES are set in t-linux64. KFREEBSD_OS = $(filter kfreebsd%, $(word 3, $(subst -, ,$(target)))) -MULTILIB_OSDIRNAMES := $(filter-out mx32=% $(subst linux,$(KFREEBSD_OS),$(MULTILIB_OSDIRNAMES)))