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 BFB39138335 for ; Tue, 9 Jan 2018 02:00:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 466CFE092B; Tue, 9 Jan 2018 02:00:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 08E2FE0923 for ; Tue, 9 Jan 2018 02:00:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 8A73534109B for ; Mon, 8 Jan 2018 13:58:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 24C2E1A6 for ; Mon, 8 Jan 2018 13:58:16 +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: <1515419845.e829c371592c8b1899da5fc156d30b70c4a135d6.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nmap/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/nmap/nmap-7.40.ebuild net-analyzer/nmap/nmap-7.50.ebuild net-analyzer/nmap/nmap-7.60.ebuild net-analyzer/nmap/nmap-9999.ebuild X-VCS-Directories: net-analyzer/nmap/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: e829c371592c8b1899da5fc156d30b70c4a135d6 X-VCS-Branch: master Date: Mon, 8 Jan 2018 13:58:16 +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: e5d483c8-2880-4987-a577-f1134991b394 X-Archives-Hash: 6326eae80d7d0165ccfc1069de604beb commit: e829c371592c8b1899da5fc156d30b70c4a135d6 Author: Ulrich Müller gentoo org> AuthorDate: Mon Jan 8 13:57:06 2018 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Mon Jan 8 13:57:25 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e829c371 net-analyzer/nmap: Fix typo in variable name. Closes: https://bugs.gentoo.org/643860 Package-Manager: Portage-2.3.19, Repoman-2.3.6 net-analyzer/nmap/nmap-7.40.ebuild | 2 +- net-analyzer/nmap/nmap-7.50.ebuild | 2 +- net-analyzer/nmap/nmap-7.60.ebuild | 2 +- net-analyzer/nmap/nmap-9999.ebuild | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/net-analyzer/nmap/nmap-7.40.ebuild b/net-analyzer/nmap/nmap-7.40.ebuild index 75ad3bdc6aa..b1b445aa953 100644 --- a/net-analyzer/nmap/nmap-7.40.ebuild +++ b/net-analyzer/nmap/nmap-7.40.ebuild @@ -84,7 +84,7 @@ src_prepare() { local lingua if use nls; then for lingua in ${NMAP_LINGUAS[@]}; do - if ! has ${linguas} ${LINGUAS-${lingua}}; then + if ! has ${lingua} ${LINGUAS-${lingua}}; then rm -r zenmap/share/zenmap/locale/${lingua} || die rm zenmap/share/zenmap/locale/${lingua}.po || die fi diff --git a/net-analyzer/nmap/nmap-7.50.ebuild b/net-analyzer/nmap/nmap-7.50.ebuild index 4cef5f17ec7..e8d52c0afb3 100644 --- a/net-analyzer/nmap/nmap-7.50.ebuild +++ b/net-analyzer/nmap/nmap-7.50.ebuild @@ -84,7 +84,7 @@ src_prepare() { local lingua if use nls; then for lingua in ${NMAP_LINGUAS[@]}; do - if ! has ${linguas} ${LINGUAS-${lingua}}; then + if ! has ${lingua} ${LINGUAS-${lingua}}; then rm -r zenmap/share/zenmap/locale/${lingua} || die rm zenmap/share/zenmap/locale/${lingua}.po || die fi diff --git a/net-analyzer/nmap/nmap-7.60.ebuild b/net-analyzer/nmap/nmap-7.60.ebuild index d6bd64a6b69..59a746de80e 100644 --- a/net-analyzer/nmap/nmap-7.60.ebuild +++ b/net-analyzer/nmap/nmap-7.60.ebuild @@ -90,7 +90,7 @@ src_prepare() { local lingua if use nls; then for lingua in ${NMAP_LINGUAS[@]}; do - if ! has ${linguas} ${LINGUAS-${lingua}}; then + if ! has ${lingua} ${LINGUAS-${lingua}}; then rm -r zenmap/share/zenmap/locale/${lingua} || die rm zenmap/share/zenmap/locale/${lingua}.po || die fi diff --git a/net-analyzer/nmap/nmap-9999.ebuild b/net-analyzer/nmap/nmap-9999.ebuild index 3424bf9d8b6..ad91a6386b5 100644 --- a/net-analyzer/nmap/nmap-9999.ebuild +++ b/net-analyzer/nmap/nmap-9999.ebuild @@ -85,7 +85,7 @@ src_prepare() { local lingua if use nls; then for lingua in ${NMAP_LINGUAS[@]}; do - if ! has ${linguas} ${LINGUAS-${lingua}}; then + if ! has ${lingua} ${LINGUAS-${lingua}}; then rm -r zenmap/share/zenmap/locale/${lingua} || die rm zenmap/share/zenmap/locale/${lingua}.po || die fi