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 CB13B158017 for ; Wed, 29 Sep 2021 13:14:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 31255E0893; Wed, 29 Sep 2021 13:14:11 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1664AE0893 for ; Wed, 29 Sep 2021 13:14:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D8911342C94 for ; Wed, 29 Sep 2021 13:14:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6F8D9107 for ; Wed, 29 Sep 2021 13:14:08 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1632921216.601610833831462786c12893b87ec8a9ccc50fda.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: eclass/ X-VCS-Repository: repo/proj/guru X-VCS-Files: eclass/node.eclass X-VCS-Directories: eclass/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: 601610833831462786c12893b87ec8a9ccc50fda X-VCS-Branch: dev Date: Wed, 29 Sep 2021 13:14:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 65891d7a-7a6d-4e03-967a-3f9e3f63d2a0 X-Archives-Hash: b35f31e19ecd0640d6a0fe7e737378dc commit: 601610833831462786c12893b87ec8a9ccc50fda Author: Alessandro Barbieri gmail com> AuthorDate: Wed Sep 29 13:13:36 2021 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Wed Sep 29 13:13:36 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=60161083 node.eclass: remove /opt from paths Signed-off-by: Alessandro Barbieri gmail.com> eclass/node.eclass | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/eclass/node.eclass b/eclass/node.eclass index aeff2f3c7..47b7a57b1 100644 --- a/eclass/node.eclass +++ b/eclass/node.eclass @@ -82,9 +82,8 @@ node_src_prepare() { } node_src_configure() { - export PATH="${PATH}:/opt/node-debian/usr/bin" #path to the modules - export NODE_PATH="/usr/$(get_libdir)/node_modules:/opt/node-debian/usr/share/nodejs" + export NODE_PATH="/usr/$(get_libdir)/node_modules" export npm_config_prefix="${NODE_MODULE_PREFIX}" #path to the headers needed by node-gyp export npm_config_nodedir="/usr/include/node"