From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D1BD5138334 for ; Wed, 20 Jun 2018 17:49:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 49523E0A76; Wed, 20 Jun 2018 17:49:23 +0000 (UTC) Received: from atfriesa01.ssi-schaefer.com (atfriesa01.ssi-schaefer.com [193.186.16.100]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 80C86E0A5B for ; Wed, 20 Jun 2018 17:49:21 +0000 (UTC) X-IronPort-AV: E=Sophos;i="5.51,248,1526335200"; d="scan'208";a="16090376" X-IPAS-Result: =?us-ascii?q?A2G6AABDkypb/+shHKxbGgEBAQEBAgEBAQEIAQEBAZFPjQY?= =?us-ascii?q?BAQEBAQaWL4IEE4d0NBgBAgEBAQEBAQICAoERhSsGJ1IQUVeDPoFzrUozhFuDa?= =?us-ascii?q?G2JYIEHgQ+HT4EEhGkgApkkCY8FC4gGhTuRX4FBggt9CIMjkFCODoJFAwEB?= Received: from samail03.wamas.com (HELO mailhost.salomon.at) ([172.28.33.235]) by atfriesa01.ssi-schaefer.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 20 Jun 2018 19:49:20 +0200 Received: from [172.28.42.244] (helo=fril0049.wamas.com) by mailhost.salomon.at with smtp (Exim 4.77) (envelope-from ) id 1fVhEN-0004FR-S8; Wed, 20 Jun 2018 19:49:19 +0200 Received: (nullmailer pid 10368 invoked by uid 249); Wed, 20 Jun 2018 17:49:19 -0000 From: Michael Haubenwallner To: gentoo-dev@lists.gentoo.org Cc: Michael Haubenwallner Subject: [gentoo-dev] [PATCH 1/5] toolchain.eclass: ROOT->EROOT at looking for gcc specs file Date: Wed, 20 Jun 2018 19:49:01 +0200 Message-Id: <20180620174905.7733-2-haubi@gentoo.org> X-Mailer: git-send-email 2.16.1 In-Reply-To: <20180620174905.7733-1-haubi@gentoo.org> References: <20180620174905.7733-1-haubi@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org X-Archives-Salt: e79f6506-2f06-4b00-85c1-2c080639c1f0 X-Archives-Hash: 6b1deb88970a8e0cbc816e00a1f1d605 --- eclass/toolchain.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 68e4ce15b37..fe41a80db28 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -2207,7 +2207,7 @@ do_gcc_config() { [[ -n ${current_specs} ]] && use_specs=-${current_specs} if [[ -n ${use_specs} ]] && \ - [[ ! -e ${ROOT}/etc/env.d/gcc/${CTARGET}-${GCC_CONFIG_VER}${use_specs} ]] + [[ ! -e ${EROOT}etc/env.d/gcc/${CTARGET}-${GCC_CONFIG_VER}${use_specs} ]] then ewarn "The currently selected specs-specific gcc config," ewarn "${current_specs}, doesn't exist anymore. This is usually" -- 2.16.1