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 A437E139085 for ; Thu, 26 Jan 2017 08:26:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 18306E0D37; Thu, 26 Jan 2017 08:26:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EC0C8E0D37 for ; Thu, 26 Jan 2017 08:26:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1368934105A for ; Thu, 26 Jan 2017 08:26:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AA8283009 for ; Thu, 26 Jan 2017 08:26:36 +0000 (UTC) From: "Göktürk Yüksek" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Göktürk Yüksek" Message-ID: <1485419157.96dd044033b0db4df54edec516d7f95359a99592.gokturk@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/po4a/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/po4a/po4a-0.47.ebuild X-VCS-Directories: app-text/po4a/ X-VCS-Committer: gokturk X-VCS-Committer-Name: Göktürk Yüksek X-VCS-Revision: 96dd044033b0db4df54edec516d7f95359a99592 X-VCS-Branch: master Date: Thu, 26 Jan 2017 08:26:36 +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: 9cd07eaf-486e-447e-93c4-c55beb5188e0 X-Archives-Hash: 18aac8d09e32d44384387517aa5c18c4 commit: 96dd044033b0db4df54edec516d7f95359a99592 Author: Alexander Golubev gmail com> AuthorDate: Thu Jan 26 04:14:48 2017 +0000 Commit: Göktürk Yüksek gentoo org> CommitDate: Thu Jan 26 08:25:57 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96dd0440 app-text/po4a: slightly improve the ebuild app-text/po4a/po4a-0.47.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app-text/po4a/po4a-0.47.ebuild b/app-text/po4a/po4a-0.47.ebuild index a1bafa0..094d939 100644 --- a/app-text/po4a/po4a-0.47.ebuild +++ b/app-text/po4a/po4a-0.47.ebuild @@ -41,8 +41,8 @@ DIST_TEST="do" src_prepare() { # Check against locale files in ${S}/pod/bin for mismatches # with languages listed in PLOCALES - local locales_path="$S/po/bin" - l10n_find_plocales_changes "$locales_path" "" ".po" + local locales_path="${S}/po/bin" + l10n_find_plocales_changes "${locales_path}" "" ".po" # Get rid of disabled locales my_get_disabled_locales() { @@ -51,7 +51,7 @@ src_prepare() { l10n_for_each_disabled_locale_do my_get_disabled_locales - einfo "Your LINGUAS lists the following languages: $LINGUAS" + einfo "Your LINGUAS lists the following languages: ${LINGUAS}" perl-module_src_prepare }