From patchwork Wed Jul 4 11:44:40 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Martin Jambor X-Patchwork-Id: 939267 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-481001-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=suse.cz Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="lnzkn2vb"; dkim-atps=neutral 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 41LK0p3bYpz9s29 for ; Wed, 4 Jul 2018 21:44:55 +1000 (AEST) 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:mime-version:content-type; q=dns; s=default; b=jGGtR7MMqxWcG3pQtEpe8MRjkpHXkLwPPPRcLS3cPpAbgiiHqH pwX+myk/2eR+YBUx/yuGRri4H8LkJAM6Oh1N7CxjisOpEN7pLIznVPi0qE/jkZyW JaizhpqGJFGt1iwvvog9gob0i3aw+jnGd8AmtQ7i9l2KiluUK4dkwkT78= 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:mime-version:content-type; s= default; bh=wUnMlWuuvv966muiVRS3ql4T4e0=; b=lnzkn2vbqOdGe4RQQ7oD CfQk0ZNBzMm/m9v32OuADCiuFcUNEoBEwPXln5cjxEMw+NUWXtrfaR6n/AMoafL/ +5zfVhpsBdrZ/4t56aF3b5OWefPGiIIfZQMNvmk+5D846DfDKNzkwvxekCWZKlV6 4kislSZDk/uk8fU64/dOFkc= Received: (qmail 92453 invoked by alias); 4 Jul 2018 11:44:46 -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 92406 invoked by uid 89); 4 Jul 2018 11:44:45 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_PASS autolearn=ham version=3.3.2 spammy=HOME, slipped, moments X-HELO: mx1.suse.de Received: from mx2.suse.de (HELO mx1.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 04 Jul 2018 11:44:44 +0000 Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 76638ACB8; Wed, 4 Jul 2018 11:44:41 +0000 (UTC) From: Martin Jambor To: GCC Patches Cc: Pekka =?utf-8?b?SsOkw6Rza2Vsw6RpbmVu?= Subject: [PR 86371] Remove spurious $HOME include from BRIG FE Makefile User-Agent: Notmuch/0.26 (https://notmuchmail.org) Emacs/25.3.1 (x86_64-suse-linux-gnu) Date: Wed, 04 Jul 2018 13:44:40 +0200 Message-ID: MIME-Version: 1.0 X-IsSubscribed: yes Hi, a spurious include directory from $HOME slipped into a BRIG FE Makefile. I've bootstrapped and tested the following fix, which I am going to commit in a few moments. Martin 2018-07-04 Martin Jambor PR hsa/86371 * Make-lang.in (BRIGINCLUDES): Remove erroneous include path in $HOME. diff --git a/gcc/brig/Make-lang.in b/gcc/brig/Make-lang.in index 151b92d..8799aa7 100644 --- a/gcc/brig/Make-lang.in +++ b/gcc/brig/Make-lang.in @@ -239,8 +239,7 @@ brig.stagefeedback: stagefeedback-start CFLAGS-brig/brig-lang.o += -DDEFAULT_TARGET_VERSION=\"$(version)\" \ -DDEFAULT_TARGET_MACHINE=\"$(target_noncanonical)\" -BRIGINCLUDES = -I $(srcdir)/brig -I ${HOME}/local/include \ - -I $(srcdir)/brig/brigfrontend +BRIGINCLUDES = -I $(srcdir)/brig -I $(srcdir)/brig/brigfrontend brig/brig-machine.o: brig/brigfrontend/brig-machine.c $(COMPILE) $(BRIGINCLUDES) $<