Skip to content

Commit

Permalink
app-emulation/wine-staging: Account for unset LINGUAS too.
Browse files Browse the repository at this point in the history
Package-Manager: Portage-2.3.19, Repoman-2.3.6
  • Loading branch information
ulm committed Jan 5, 2018
1 parent c1d6eae commit 214e47a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app-emulation/wine-staging/wine-staging-2.0-r1.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ multilib_src_install_all() {
# respect LINGUAS when installing man pages, #469418
local l
for l in de fr pl; do
has ${l} ${LINGUAS} || rm -rf "${D%/}${MY_MANDIR}"/${l}*
has ${l} ${LINGUAS-${l}} || rm -rf "${D%/}${MY_MANDIR}"/${l}*
done

eval "${glob_state}"
Expand Down
2 changes: 1 addition & 1 deletion app-emulation/wine-staging/wine-staging-2.17-r1.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ multilib_src_install_all() {
# respect LINGUAS when installing man pages, #469418
local l
for l in de fr pl; do
has ${l} ${LINGUAS} || rm -rf "${D%/}${MY_MANDIR}"/${l}*
has ${l} ${LINGUAS-${l}} || rm -rf "${D%/}${MY_MANDIR}"/${l}*
done

eval "${glob_state}"
Expand Down
2 changes: 1 addition & 1 deletion app-emulation/wine-staging/wine-staging-2.18.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ multilib_src_install_all() {
# respect LINGUAS when installing man pages, #469418
local l
for l in de fr pl; do
has ${l} ${LINGUAS} || rm -rf "${D%/}${MY_MANDIR}"/${l}*
has ${l} ${LINGUAS-${l}} || rm -rf "${D%/}${MY_MANDIR}"/${l}*
done

eval "${glob_state}"
Expand Down
2 changes: 1 addition & 1 deletion app-emulation/wine-staging/wine-staging-2.19.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ multilib_src_install_all() {
# respect LINGUAS when installing man pages, #469418
local l
for l in de fr pl; do
has ${l} ${LINGUAS} || rm -rf "${D%/}${MY_MANDIR}"/${l}*
has ${l} ${LINGUAS-${l}} || rm -rf "${D%/}${MY_MANDIR}"/${l}*
done

eval "${glob_state}"
Expand Down
2 changes: 1 addition & 1 deletion app-emulation/wine-staging/wine-staging-9999.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ multilib_src_install_all() {
# respect LINGUAS when installing man pages, #469418
local l
for l in de fr pl; do
has ${l} ${LINGUAS} || rm -rf "${D%/}${MY_MANDIR}"/${l}*
has ${l} ${LINGUAS-${l}} || rm -rf "${D%/}${MY_MANDIR}"/${l}*
done

eval "${glob_state}"
Expand Down

0 comments on commit 214e47a

Please sign in to comment.