diff options
Diffstat (limited to 'eclass/myspell-r2.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 |