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 D0B201580B1 for ; Tue, 31 Aug 2021 23:55:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 13FE2E0A81; Tue, 31 Aug 2021 23:55:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 61134E0A81 for ; Tue, 31 Aug 2021 23:55:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 711B834087C for ; Tue, 31 Aug 2021 23:55:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ADAE290 for ; Tue, 31 Aug 2021 23:55:27 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1630451532.95a58b97e69183ce0bff8897451f61776968d7eb.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/nasm/nasm-2.15.05.ebuild X-VCS-Directories: dev-lang/nasm/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 95a58b97e69183ce0bff8897451f61776968d7eb X-VCS-Branch: master Date: Tue, 31 Aug 2021 23:55:27 +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: 7a62ba40-3126-4e2c-9f03-183bea5f03d0 X-Archives-Hash: 950eb75a4b18dd485f0e4e2c148818e1 commit: 95a58b97e69183ce0bff8897451f61776968d7eb Author: Matt Smith offtopica uk> AuthorDate: Tue Aug 31 19:50:28 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Aug 31 23:12:12 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95a58b97 dev-lang/nasm: Fix install on Gentoo Prefix DESTDIR should not be ${ED}. Closes: https://bugs.gentoo.org/811243 Package-Manager: Portage-3.0.22, Repoman-3.0.3 Signed-off-by: Matt Smith offtopica.uk> Closes: https://github.com/gentoo/gentoo/pull/22174 Signed-off-by: Sam James gentoo.org> dev-lang/nasm/nasm-2.15.05.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-lang/nasm/nasm-2.15.05.ebuild b/dev-lang/nasm/nasm-2.15.05.ebuild index 297cea8bba3..399a50a8a0f 100644 --- a/dev-lang/nasm/nasm-2.15.05.ebuild +++ b/dev-lang/nasm/nasm-2.15.05.ebuild @@ -38,5 +38,5 @@ src_compile() { src_install() { default - emake DESTDIR="${ED}" install_rdf $(usex doc install_doc '') + emake DESTDIR="${D}" install_rdf $(usex doc install_doc '') }