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 8B636158087 for ; Fri, 4 Feb 2022 11:21:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A3F992BC01D; Fri, 4 Feb 2022 11:21:04 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AD8522BC01D for ; Fri, 4 Feb 2022 11:21:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8AAFE342DE0 for ; Fri, 4 Feb 2022 11:21:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EB425D0 for ; Fri, 4 Feb 2022 11:21:00 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1643973657.69b84eea11856f9627a7a0d10bf05b241df55406.grobian@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/mold/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/mold/mold-1.0.0-r1.ebuild sys-devel/mold/mold-1.0.1-r1.ebuild sys-devel/mold/mold-1.0.2.ebuild sys-devel/mold/mold-9999.ebuild X-VCS-Directories: sys-devel/mold/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 69b84eea11856f9627a7a0d10bf05b241df55406 X-VCS-Branch: master Date: Fri, 4 Feb 2022 11:21: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: 8fcc29f3-43eb-4eed-9249-629188ef52c8 X-Archives-Hash: a6ad863baf0a38f8f0d1736df4769a2a commit: 69b84eea11856f9627a7a0d10bf05b241df55406 Author: Fabian Groffen gentoo org> AuthorDate: Fri Feb 4 11:20:47 2022 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Fri Feb 4 11:20:57 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69b84eea sys-devel/mold: fix double Prefix, thanks Jens Lindenmeier Closes: https://bugs.gentoo.org/832685 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Fabian Groffen gentoo.org> sys-devel/mold/mold-1.0.0-r1.ebuild | 4 ++-- sys-devel/mold/mold-1.0.1-r1.ebuild | 2 +- sys-devel/mold/mold-1.0.2.ebuild | 2 +- sys-devel/mold/mold-9999.ebuild | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/sys-devel/mold/mold-1.0.0-r1.ebuild b/sys-devel/mold/mold-1.0.0-r1.ebuild index 767cc5c80f54..8560f5f36a1e 100644 --- a/sys-devel/mold/mold-1.0.0-r1.ebuild +++ b/sys-devel/mold/mold-1.0.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 2021 Gentoo Authors +# Copyright 2021-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -59,7 +59,7 @@ src_install() { emake \ SYSTEM_TBB=1 \ SYSTEM_MIMALLOC=1 \ - DESTDIR="${ED}" \ + DESTDIR="${D}" \ PREFIX="${EPREFIX}/usr" \ LIBDIR="${EPREFIX}/usr/$(get_libdir)" \ STRIP="true" \ diff --git a/sys-devel/mold/mold-1.0.1-r1.ebuild b/sys-devel/mold/mold-1.0.1-r1.ebuild index e0cd2503b621..55ecbef5a00e 100644 --- a/sys-devel/mold/mold-1.0.1-r1.ebuild +++ b/sys-devel/mold/mold-1.0.1-r1.ebuild @@ -63,7 +63,7 @@ src_install() { SYSTEM_TBB=1 \ SYSTEM_MIMALLOC=1 \ SYSTEM_XXHASH=1 \ - DESTDIR="${ED}" \ + DESTDIR="${D}" \ PREFIX="${EPREFIX}/usr" \ LIBDIR="${EPREFIX}/usr/$(get_libdir)" \ STRIP="true" \ diff --git a/sys-devel/mold/mold-1.0.2.ebuild b/sys-devel/mold/mold-1.0.2.ebuild index 3e1594e0daec..7948bbc23805 100644 --- a/sys-devel/mold/mold-1.0.2.ebuild +++ b/sys-devel/mold/mold-1.0.2.ebuild @@ -63,7 +63,7 @@ src_install() { SYSTEM_TBB=1 \ SYSTEM_MIMALLOC=1 \ SYSTEM_XXHASH=1 \ - DESTDIR="${ED}" \ + DESTDIR="${D}" \ PREFIX="${EPREFIX}/usr" \ LIBDIR="${EPREFIX}/usr/$(get_libdir)" \ STRIP="true" \ diff --git a/sys-devel/mold/mold-9999.ebuild b/sys-devel/mold/mold-9999.ebuild index 3e1594e0daec..7948bbc23805 100644 --- a/sys-devel/mold/mold-9999.ebuild +++ b/sys-devel/mold/mold-9999.ebuild @@ -63,7 +63,7 @@ src_install() { SYSTEM_TBB=1 \ SYSTEM_MIMALLOC=1 \ SYSTEM_XXHASH=1 \ - DESTDIR="${ED}" \ + DESTDIR="${D}" \ PREFIX="${EPREFIX}/usr" \ LIBDIR="${EPREFIX}/usr/$(get_libdir)" \ STRIP="true" \