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 76B461382C5 for ; Mon, 10 May 2021 12:21:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 48078E078A; Mon, 10 May 2021 12:21:53 +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 2BB13E078A for ; Mon, 10 May 2021 12:21:53 +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 B0E3733BE61 for ; Mon, 10 May 2021 12:21:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1EE2F4A0 for ; Mon, 10 May 2021 12:21:50 +0000 (UTC) From: "Guilherme Amadio" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Guilherme Amadio" Message-ID: <1620649192.04790b3e4af4b3bbe35aa36a168c04aed3753168.amadio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/xterm/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-terms/xterm/xterm-366.ebuild x11-terms/xterm/xterm-367.ebuild X-VCS-Directories: x11-terms/xterm/ X-VCS-Committer: amadio X-VCS-Committer-Name: Guilherme Amadio X-VCS-Revision: 04790b3e4af4b3bbe35aa36a168c04aed3753168 X-VCS-Branch: master Date: Mon, 10 May 2021 12:21:50 +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: aa1564f3-4731-49e2-b0e9-f30bfba497a9 X-Archives-Hash: ace7e90ded7c8c468025251a38145c97 commit: 04790b3e4af4b3bbe35aa36a168c04aed3753168 Author: Guilherme Amadio gentoo org> AuthorDate: Mon May 10 12:19:52 2021 +0000 Commit: Guilherme Amadio gentoo org> CommitDate: Mon May 10 12:19:52 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04790b3e x11-terms/xterm: fix double prefix in sed command ${DEFAULTS_DIR} already includes ${EPREFIX}. Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Guilherme Amadio gentoo.org> x11-terms/xterm/xterm-366.ebuild | 2 +- x11-terms/xterm/xterm-367.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/x11-terms/xterm/xterm-366.ebuild b/x11-terms/xterm/xterm-366.ebuild index ea017d32b72..86edf8cd23e 100644 --- a/x11-terms/xterm/xterm-366.ebuild +++ b/x11-terms/xterm/xterm-366.ebuild @@ -95,5 +95,5 @@ src_install() { fperms 0755 /usr/bin/xterm # restore the navy blue - sed -i -e 's:blue2$:blue:' "${ED}${DEFAULTS_DIR}"/XTerm-color || die + sed -i -e 's:blue2$:blue:' "${D}${DEFAULTS_DIR}"/XTerm-color || die } diff --git a/x11-terms/xterm/xterm-367.ebuild b/x11-terms/xterm/xterm-367.ebuild index ea017d32b72..86edf8cd23e 100644 --- a/x11-terms/xterm/xterm-367.ebuild +++ b/x11-terms/xterm/xterm-367.ebuild @@ -95,5 +95,5 @@ src_install() { fperms 0755 /usr/bin/xterm # restore the navy blue - sed -i -e 's:blue2$:blue:' "${ED}${DEFAULTS_DIR}"/XTerm-color || die + sed -i -e 's:blue2$:blue:' "${D}${DEFAULTS_DIR}"/XTerm-color || die }