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 6167D1382C5 for ; Sat, 3 Apr 2021 18:28:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 81E72E0826; Sat, 3 Apr 2021 18:28:12 +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 5EA28E0826 for ; Sat, 3 Apr 2021 18:28:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 13DAF335C60 for ; Sat, 3 Apr 2021 18:28:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3C63C4A8 for ; Sat, 3 Apr 2021 18:28:09 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1617474463.ad7062a09e939c8314ef8a796af7603fcb2dc39c.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-accessibility/brltty/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-accessibility/brltty/brltty-6.1.ebuild X-VCS-Directories: app-accessibility/brltty/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: ad7062a09e939c8314ef8a796af7603fcb2dc39c X-VCS-Branch: master Date: Sat, 3 Apr 2021 18:28:09 +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: 499f451e-69f0-4897-ae56-3149734477cc X-Archives-Hash: 481fcd51a9ff3e9220c25018dd4436bd commit: ad7062a09e939c8314ef8a796af7603fcb2dc39c Author: Mike Gilbert gentoo org> AuthorDate: Sat Apr 3 18:27:43 2021 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sat Apr 3 18:27:43 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad7062a0 app-accessibility/brltty: avoid referencing D in src_configure Signed-off-by: Mike Gilbert gentoo.org> app-accessibility/brltty/brltty-6.1.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app-accessibility/brltty/brltty-6.1.ebuild b/app-accessibility/brltty/brltty-6.1.ebuild index 518a31f5e70..ac8d82d172b 100644 --- a/app-accessibility/brltty/brltty-6.1.ebuild +++ b/app-accessibility/brltty/brltty-6.1.ebuild @@ -110,7 +110,6 @@ src_configure() { --includedir="${EPREFIX}"/usr/include --localstatedir="${EPREFIX}"/var --disable-stripping - --with-install-root="${D}" --with-writable-directory="${EPREFIX}"/run/brltty $(use_enable api) $(use_with beeper beep-package) @@ -163,12 +162,12 @@ src_install() { findlib_src_preinst fi - emake OCAML_LDCONF= install + emake INSTALL_ROOT="${D}" OCAML_LDCONF= install if use python; then python_install() { cd "Bindings/Python" || die - emake install + emake INSTALL_ROOT="${D}" install } python_foreach_impl run_in_build_dir python_install fi