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 A59CD138351 for ; Tue, 4 Feb 2020 14:39:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 87DB6E0806; Tue, 4 Feb 2020 14:39:41 +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 66D93E0806 for ; Tue, 4 Feb 2020 14:39:41 +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 463EF34E709 for ; Tue, 4 Feb 2020 14:39:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F2E7F10B for ; Tue, 4 Feb 2020 14:39:38 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1580827169.33bf67322bdacf5ab6f9800802b065c14b4cd8be.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/emacs-updater/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/emacs-updater/emacs-updater-1.16.ebuild X-VCS-Directories: app-admin/emacs-updater/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 33bf67322bdacf5ab6f9800802b065c14b4cd8be X-VCS-Branch: master Date: Tue, 4 Feb 2020 14:39:38 +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: 77927f35-d41d-433d-8a3d-fac994bb5fff X-Archives-Hash: 565445d137774100f185e9a0ccf0ca2d commit: 33bf67322bdacf5ab6f9800802b065c14b4cd8be Author: Ulrich Müller gentoo org> AuthorDate: Tue Feb 4 14:39:18 2020 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Tue Feb 4 14:39:29 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33bf6732 app-admin/emacs-updater: Remove unnecessary removal of trailing slash. Package-Manager: Portage-2.3.87, Repoman-2.3.20 Signed-off-by: Ulrich Müller gentoo.org> app-admin/emacs-updater/emacs-updater-1.16.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app-admin/emacs-updater/emacs-updater-1.16.ebuild b/app-admin/emacs-updater/emacs-updater-1.16.ebuild index 92ee3bdbd77..25dc8ffca26 100644 --- a/app-admin/emacs-updater/emacs-updater-1.16.ebuild +++ b/app-admin/emacs-updater/emacs-updater-1.16.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -25,8 +25,8 @@ src_prepare() { fi if [[ -n ${EPREFIX} ]]; then - sed -i -e "1s:/:${EPREFIX%/}/:" \ - -e "s:^\([[:upper:]]*=\)/:\1${EPREFIX%/}/:" \ + sed -i -e "1s:/:${EPREFIX}/:" \ + -e "s:^\([[:upper:]]*=\)/:\1${EPREFIX}/:" \ emacs-updater || die fi }