Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/emacs-updater/
Date: Tue, 04 Feb 2020 14:39:42
Message-Id: 1580827169.33bf67322bdacf5ab6f9800802b065c14b4cd8be.ulm@gentoo
1 commit: 33bf67322bdacf5ab6f9800802b065c14b4cd8be
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 4 14:39:18 2020 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 4 14:39:29 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33bf6732
7
8 app-admin/emacs-updater: Remove unnecessary removal of trailing slash.
9
10 Package-Manager: Portage-2.3.87, Repoman-2.3.20
11 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
12
13 app-admin/emacs-updater/emacs-updater-1.16.ebuild | 6 +++---
14 1 file changed, 3 insertions(+), 3 deletions(-)
15
16 diff --git a/app-admin/emacs-updater/emacs-updater-1.16.ebuild b/app-admin/emacs-updater/emacs-updater-1.16.ebuild
17 index 92ee3bdbd77..25dc8ffca26 100644
18 --- a/app-admin/emacs-updater/emacs-updater-1.16.ebuild
19 +++ b/app-admin/emacs-updater/emacs-updater-1.16.ebuild
20 @@ -1,4 +1,4 @@
21 -# Copyright 1999-2019 Gentoo Authors
22 +# Copyright 1999-2020 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=7
26 @@ -25,8 +25,8 @@ src_prepare() {
27 fi
28
29 if [[ -n ${EPREFIX} ]]; then
30 - sed -i -e "1s:/:${EPREFIX%/}/:" \
31 - -e "s:^\([[:upper:]]*=\)/:\1${EPREFIX%/}/:" \
32 + sed -i -e "1s:/:${EPREFIX}/:" \
33 + -e "s:^\([[:upper:]]*=\)/:\1${EPREFIX}/:" \
34 emacs-updater || die
35 fi
36 }