diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-08-22 22:59:46 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-08-22 23:26:53 +0200 |
commit | 389ba45f32aa084bb2398dda02331380c868903f (patch) | |
tree | a1f69f210e21c262fb8bf8e6e2baf507b2d0f7ec /eclass | |
parent | app-dicts/myspell-ru: [QA] Use relative symlink target(s) (diff) | |
download | gentoo-389ba45f32aa084bb2398dda02331380c868903f.tar.gz gentoo-389ba45f32aa084bb2398dda02331380c868903f.tar.bz2 gentoo-389ba45f32aa084bb2398dda02331380c868903f.zip |
myspell-r2.eclass: [QA] Use relative symlink target(s)
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/myspell-r2.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/myspell-r2.eclass b/eclass/myspell-r2.eclass index 4d2661354f23..5da9e3d0dc47 100644 --- a/eclass/myspell-r2.eclass +++ b/eclass/myspell-r2.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # @ECLASS: aspell-dict.eclass @@ -85,21 +85,21 @@ myspell-r2_src_install() { for x in "${MYSPELL_DICT[@]}"; do target="${x##*/}" newins "${x}" "${target}" || die - dosym /usr/share/hunspell/"${target}" /usr/share/myspell/"${target}" || die + dosym ../hunspell/"${target}" /usr/share/myspell/"${target}" || die done insinto /usr/share/mythes for x in "${MYSPELL_THES[@]}"; do target="${x##*/}" newins "${x}" "${target}" || die - dosym /usr/share/mythes/"${target}" /usr/share/myspell/"${target}" || die + dosym ../mythes/"${target}" /usr/share/myspell/"${target}" || die done insinto /usr/share/hyphen for x in "${MYSPELL_HYPH[@]}"; do target="${x##*/}" newins "${x}" "${target}" || die - dosym /usr/share/hyphen/"${target}" /usr/share/myspell/"${target}" || die + dosym ../hyphen/"${target}" /usr/share/myspell/"${target}" || die done # Remove licenses as they suffix them with .txt too |