From patchwork Wed Apr 22 08:36:34 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernhard Reutner-Fischer X-Patchwork-Id: 463619 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]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id E4DF7140133 for ; Wed, 22 Apr 2015 18:37:02 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass reason="1024-bit key; unprotected key" header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=F/UZAjAV; dkim-adsp=none (unprotected policy); dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :to:cc:subject:date:message-id; q=dns; s=default; b=GghiUYa8C7uB zLMOnE64YgP+XQuc6OBCs4pvGF5mTa2iSTRYyn6iFhCigcQtQCGfh0bG/a5EMSbe yf8rAQkVJ6G3q46lk1HDtQqZOJWV4QEjpl6kSGwhEpisbi72rH23djdtjqAjbozy x37gpTowZSg0C2816FPlep2KBF1od1Y= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :to:cc:subject:date:message-id; s=default; bh=QQ/nk0kvj9fJszWqzP u0JTcjFxc=; b=F/UZAjAVO6Iy2CdGSyeT7c+eWjuyJK/Kbx/cGh6TD+rZojVz0w 52d7zLf40CnePqZwqZnTkmoYCeOwFB6roVMlc0TVUZUd7ACyiaz6Ugg7nEV4EVhl xAr+f2g2Zw11otnTLNh9AbEbjYqxMW7B3vuvSukEkjSuVuP0aiatZTqgg= Received: (qmail 124181 invoked by alias); 22 Apr 2015 08:36:52 -0000 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 Received: (qmail 124166 invoked by uid 89); 22 Apr 2015 08:36:51 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-wg0-f49.google.com Received: from mail-wg0-f49.google.com (HELO mail-wg0-f49.google.com) (74.125.82.49) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Wed, 22 Apr 2015 08:36:50 +0000 Received: by wgen6 with SMTP id n6so23906041wge.3 for ; Wed, 22 Apr 2015 01:36:47 -0700 (PDT) X-Received: by 10.180.216.40 with SMTP id on8mr3898487wic.55.1429691807250; Wed, 22 Apr 2015 01:36:47 -0700 (PDT) Received: from s42.loc (85-127-9-55.dynamic.xdsl-line.inode.at. [85.127.9.55]) by mx.google.com with ESMTPSA id ch2sm6670595wib.18.2015.04.22.01.36.46 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Wed, 22 Apr 2015 01:36:46 -0700 (PDT) Received: from cow by s42.loc with local (Exim 4.80) (envelope-from ) id 1Ykq9E-0004Xm-IU; Wed, 22 Apr 2015 10:36:44 +0200 From: Bernhard Reutner-Fischer To: gcc-patches@gcc.gnu.org Cc: Bernhard Reutner-Fischer , Matt Thomas Subject: [PATCH] PR target/47122 vax-*-openbsd* config.gcc typo Date: Wed, 22 Apr 2015 10:36:34 +0200 Message-Id: <1429691794-17434-1-git-send-email-rep.dot.nop@gmail.com> X-IsSubscribed: yes Gerald / jsg typoed this in the initial r152218 a.k.a 8e6600a15374f9446d5026e8ef6b68e0d753fb6c gcc/ChangeLog: 2015-04-09 Bernhard Reutner-Fischer PR target/47122 * config.gcc (vax-*-openbsd*): Fix name of pthread spec header. --- gcc/config.gcc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config.gcc b/gcc/config.gcc index ddbd57b..e77c1a4 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -2917,7 +2917,7 @@ vax-*-netbsdelf*) extra_options="${extra_options} netbsd.opt netbsd-elf.opt vax/elf.opt" ;; vax-*-openbsd*) - tm_file="vax/vax.h vax/openbsd1.h openbsd.h openbsd-stdint.h openbsd-pthread.h vax/openbsd.h" + tm_file="vax/vax.h vax/openbsd1.h openbsd.h openbsd-stdint.h openbsd-libpthread.h vax/openbsd.h" extra_options="${extra_options} openbsd.opt" use_collect2=yes ;;