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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D90AF158086 for ; Wed, 1 Dec 2021 05:50:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 124EAE0841; Wed, 1 Dec 2021 05:50:13 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EC2A7E0841 for ; Wed, 1 Dec 2021 05:50:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 57FC7335D3B for ; Wed, 1 Dec 2021 05:50:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D9BE01F5 for ; Wed, 1 Dec 2021 05:50:00 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1638337757.b6e19b768f98d7ae2f05a0e32a99a69935e8310c.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-vpn/i2pd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-vpn/i2pd/i2pd-2.40.0.ebuild X-VCS-Directories: net-vpn/i2pd/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: b6e19b768f98d7ae2f05a0e32a99a69935e8310c X-VCS-Branch: master Date: Wed, 1 Dec 2021 05:50:00 +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: 659f3634-fe69-433f-a4ec-48460a333420 X-Archives-Hash: 41dbf548017d0462fa53a02c89c6af7b commit: b6e19b768f98d7ae2f05a0e32a99a69935e8310c Author: Ionen Wolkens gentoo org> AuthorDate: Wed Dec 1 05:24:01 2021 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Wed Dec 1 05:49:17 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6e19b76 net-vpn/i2pd: respect variable scope Reading ${S} in global scope is /technically/ undefined behavior per PMS. Signed-off-by: Ionen Wolkens gentoo.org> net-vpn/i2pd/i2pd-2.40.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-vpn/i2pd/i2pd-2.40.0.ebuild b/net-vpn/i2pd/i2pd-2.40.0.ebuild index 508b3c4ca5e7..106e5d800df4 100644 --- a/net-vpn/i2pd/i2pd-2.40.0.ebuild +++ b/net-vpn/i2pd/i2pd-2.40.0.ebuild @@ -23,9 +23,9 @@ RDEPEND=" upnp? ( net-libs/miniupnpc:= )" DEPEND="${RDEPEND}" -CMAKE_USE_DIR="${S}/build" +CMAKE_USE_DIR="${WORKDIR}/${P}/build" -DOCS=( "${S}/README.md" "${S}/contrib/i2pd.conf" "${S}/contrib/tunnels.conf" ) +DOCS=( ../README.md ../contrib/i2pd.conf ../contrib/tunnels.conf ) pkg_pretend() { if use i2p-hardening && ! tc-is-gcc; then