Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Tue, 22 Aug 2017 21:27:03
Message-Id: 1503437213.389ba45f32aa084bb2398dda02331380c868903f.mgorny@gentoo
1 commit: 389ba45f32aa084bb2398dda02331380c868903f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 22 20:59:46 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 22 21:26:53 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=389ba45f
7
8 myspell-r2.eclass: [QA] Use relative symlink target(s)
9
10 eclass/myspell-r2.eclass | 8 ++++----
11 1 file changed, 4 insertions(+), 4 deletions(-)
12
13 diff --git a/eclass/myspell-r2.eclass b/eclass/myspell-r2.eclass
14 index 4d2661354f2..5da9e3d0dc4 100644
15 --- a/eclass/myspell-r2.eclass
16 +++ b/eclass/myspell-r2.eclass
17 @@ -1,4 +1,4 @@
18 -# Copyright 1999-2014 Gentoo Foundation
19 +# Copyright 1999-2017 Gentoo Foundation
20 # Distributed under the terms of the GNU General Public License v2
21
22 # @ECLASS: aspell-dict.eclass
23 @@ -85,21 +85,21 @@ myspell-r2_src_install() {
24 for x in "${MYSPELL_DICT[@]}"; do
25 target="${x##*/}"
26 newins "${x}" "${target}" || die
27 - dosym /usr/share/hunspell/"${target}" /usr/share/myspell/"${target}" || die
28 + dosym ../hunspell/"${target}" /usr/share/myspell/"${target}" || die
29 done
30
31 insinto /usr/share/mythes
32 for x in "${MYSPELL_THES[@]}"; do
33 target="${x##*/}"
34 newins "${x}" "${target}" || die
35 - dosym /usr/share/mythes/"${target}" /usr/share/myspell/"${target}" || die
36 + dosym ../mythes/"${target}" /usr/share/myspell/"${target}" || die
37 done
38
39 insinto /usr/share/hyphen
40 for x in "${MYSPELL_HYPH[@]}"; do
41 target="${x##*/}"
42 newins "${x}" "${target}" || die
43 - dosym /usr/share/hyphen/"${target}" /usr/share/myspell/"${target}" || die
44 + dosym ../hyphen/"${target}" /usr/share/myspell/"${target}" || die
45 done
46
47 # Remove licenses as they suffix them with .txt too