From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F0101138330 for ; Fri, 5 Jan 2018 18:10:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4578FE08A5; Fri, 5 Jan 2018 18:10:28 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 15059E08A5 for ; Fri, 5 Jan 2018 18:10:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C272F335C30 for ; Fri, 5 Jan 2018 18:10:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1B709196 for ; Fri, 5 Jan 2018 18:10:25 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1515175815.5da120dba72f5c431d6c9952bf431d440118718a.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/wine-d3d9/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/wine-d3d9/wine-d3d9-2.0-r1.ebuild app-emulation/wine-d3d9/wine-d3d9-2.17-r1.ebuild app-emulation/wine-d3d9/wine-d3d9-2.18.ebuild app-emulation/wine-d3d9/wine-d3d9-2.19.ebuild app-emulation/wine-d3d9/wine-d3d9-9999.ebuild X-VCS-Directories: app-emulation/wine-d3d9/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 5da120dba72f5c431d6c9952bf431d440118718a X-VCS-Branch: master Date: Fri, 5 Jan 2018 18:10:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5d9f1f10-fb55-4499-acdc-0c3d061c3a3d X-Archives-Hash: 711639ac4ee7299fcfa83ab8d97bf2b8 commit: 5da120dba72f5c431d6c9952bf431d440118718a Author: Ulrich Müller gentoo org> AuthorDate: Fri Jan 5 18:00:09 2018 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Fri Jan 5 18:10:15 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5da120db app-emulation/wine-d3d9: Account for unset LINGUAS too. Package-Manager: Portage-2.3.19, Repoman-2.3.6 app-emulation/wine-d3d9/wine-d3d9-2.0-r1.ebuild | 2 +- app-emulation/wine-d3d9/wine-d3d9-2.17-r1.ebuild | 2 +- app-emulation/wine-d3d9/wine-d3d9-2.18.ebuild | 2 +- app-emulation/wine-d3d9/wine-d3d9-2.19.ebuild | 2 +- app-emulation/wine-d3d9/wine-d3d9-9999.ebuild | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app-emulation/wine-d3d9/wine-d3d9-2.0-r1.ebuild b/app-emulation/wine-d3d9/wine-d3d9-2.0-r1.ebuild index a9f26693347..b254fbff804 100644 --- a/app-emulation/wine-d3d9/wine-d3d9-2.0-r1.ebuild +++ b/app-emulation/wine-d3d9/wine-d3d9-2.0-r1.ebuild @@ -518,7 +518,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}" diff --git a/app-emulation/wine-d3d9/wine-d3d9-2.17-r1.ebuild b/app-emulation/wine-d3d9/wine-d3d9-2.17-r1.ebuild index 025c48963fb..7353ee3ac22 100644 --- a/app-emulation/wine-d3d9/wine-d3d9-2.17-r1.ebuild +++ b/app-emulation/wine-d3d9/wine-d3d9-2.17-r1.ebuild @@ -520,7 +520,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}" diff --git a/app-emulation/wine-d3d9/wine-d3d9-2.18.ebuild b/app-emulation/wine-d3d9/wine-d3d9-2.18.ebuild index da487c385dc..27e42238117 100644 --- a/app-emulation/wine-d3d9/wine-d3d9-2.18.ebuild +++ b/app-emulation/wine-d3d9/wine-d3d9-2.18.ebuild @@ -516,7 +516,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}" diff --git a/app-emulation/wine-d3d9/wine-d3d9-2.19.ebuild b/app-emulation/wine-d3d9/wine-d3d9-2.19.ebuild index da487c385dc..27e42238117 100644 --- a/app-emulation/wine-d3d9/wine-d3d9-2.19.ebuild +++ b/app-emulation/wine-d3d9/wine-d3d9-2.19.ebuild @@ -516,7 +516,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}" diff --git a/app-emulation/wine-d3d9/wine-d3d9-9999.ebuild b/app-emulation/wine-d3d9/wine-d3d9-9999.ebuild index da487c385dc..27e42238117 100644 --- a/app-emulation/wine-d3d9/wine-d3d9-9999.ebuild +++ b/app-emulation/wine-d3d9/wine-d3d9-9999.ebuild @@ -516,7 +516,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}"