diff options
author | Jimi Huotari <chiitoo@gentoo.org> | 2018-01-14 21:32:27 +0200 |
---|---|---|
committer | Jimi Huotari <chiitoo@gentoo.org> | 2018-01-14 21:32:27 +0200 |
commit | 8091a0cc01a78e9dd1ba47e06e8b55a37e49a230 (patch) | |
tree | 272ef08c59bd5aba109d4e68ed5c7548ebeb6be7 /app-emulation/wine-any/wine-any-2.5-r1.ebuild | |
parent | app-emulation/winetricks: Version bump to 20171222. (diff) | |
download | wine-8091a0cc01a78e9dd1ba47e06e8b55a37e49a230.tar.gz wine-8091a0cc01a78e9dd1ba47e06e8b55a37e49a230.tar.bz2 wine-8091a0cc01a78e9dd1ba47e06e8b55a37e49a230.zip |
app-emulation/wine-any: Adjust a LINGUAS related test.
Due to changes in 'l10n.eclass', the 'use linguas_${l}' needs to be changed
to 'has ${l} ${LINGUAS-${l}}'.
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'app-emulation/wine-any/wine-any-2.5-r1.ebuild')
-rw-r--r-- | app-emulation/wine-any/wine-any-2.5-r1.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app-emulation/wine-any/wine-any-2.5-r1.ebuild b/app-emulation/wine-any/wine-any-2.5-r1.ebuild index 3b70065..7621839 100644 --- a/app-emulation/wine-any/wine-any-2.5-r1.ebuild +++ b/app-emulation/wine-any/wine-any-2.5-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -578,7 +578,7 @@ multilib_src_install_all() { # respect LINGUAS when installing man pages, #469418 local l for l in de fr pl; do - use linguas_${l} || rm -rf "${D%/}${MY_MANDIR}"/${l}* + has ${l} ${LINGUAS-${l}} || rm -rf "${D%/}${MY_MANDIR}"/${l}* done eval "${glob_state}" |