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/pypy/
Date: Sun, 15 Dec 2019 04:39:30
Message-Id: 1576384521.b5226a17e7213199a65755e69b6d0b10c9c71208.mgorny@gentoo
1 commit: b5226a17e7213199a65755e69b6d0b10c9c71208
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 15 04:35:11 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 15 04:35:21 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/dev/mgorny.git/commit/?id=b5226a17
7
8 dev-binpkg/pypy: Fix UnnecessarySlashStrip
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-binpkg/pypy/pypy-7.2.0.ebuild | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/dev-binpkg/pypy/pypy-7.2.0.ebuild b/dev-binpkg/pypy/pypy-7.2.0.ebuild
16 index 9ddef9b..b6b97f3 100644
17 --- a/dev-binpkg/pypy/pypy-7.2.0.ebuild
18 +++ b/dev-binpkg/pypy/pypy-7.2.0.ebuild
19 @@ -201,6 +201,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 }