Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/dev/mgorny:master commit in: dev-binpkg/pypy3/
Date: Sun, 15 Dec 2019 04:39:29
Message-Id: 1576384522.468d31040f8d45dbbdf6b19ad24224275f0053a8.mgorny@gentoo
1 commit: 468d31040f8d45dbbdf6b19ad24224275f0053a8
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 15 04:34:56 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 15 04:35:22 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/dev/mgorny.git/commit/?id=468d3104
7
8 dev-binpkg/pypy3: Fix UnnecessarySlashStrip
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-binpkg/pypy3/pypy3-7.2.0.ebuild | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/dev-binpkg/pypy3/pypy3-7.2.0.ebuild b/dev-binpkg/pypy3/pypy3-7.2.0.ebuild
16 index 5937d67..e366d41 100644
17 --- a/dev-binpkg/pypy3/pypy3-7.2.0.ebuild
18 +++ b/dev-binpkg/pypy3/pypy3-7.2.0.ebuild
19 @@ -191,6 +191,6 @@ src_install() {
20 pkg_preinst() {
21 # integrity check.
22 [[ ${PYPY_BINPKG_STORE} ]] || die 'PYPY_BINPKG_STORE unset, wtf?!'
23 - mkdir -p "${ROOT%/}${PYPY_BINPKG_STORE}" || die
24 - mv "${S}"/*.tar.lz "${ROOT%/}${PYPY_BINPKG_STORE}" || die
25 + mkdir -p "${ROOT}${PYPY_BINPKG_STORE}" || die
26 + mv "${S}"/*.tar.lz "${ROOT}${PYPY_BINPKG_STORE}" || die
27 }