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 1F483139694 for ; Mon, 17 Jul 2017 16:18:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BEC79E0DE9; Mon, 17 Jul 2017 16:18:42 +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 7EDD8E0C5F for ; Mon, 17 Jul 2017 16:18:42 +0000 (UTC) Received: from naomi.gilbertsystems.net (d192-24-229-26.try.wideopenwest.com [24.192.26.229]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: floppym) by smtp.gentoo.org (Postfix) with ESMTPSA id 9E4863418D9; Mon, 17 Jul 2017 16:18:41 +0000 (UTC) From: Mike Gilbert To: gentoo-dev@lists.gentoo.org Cc: williamh@gentoo.org Subject: [gentoo-dev] [PATCH] meson.eclass: ensure we have a UTF-8 locale set Date: Mon, 17 Jul 2017 12:18:38 -0400 Message-Id: <20170717161838.32745-1-floppym@gentoo.org> X-Mailer: git-send-email 2.13.3 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org X-Archives-Salt: 5120136b-0415-40ae-b732-29e852358d83 X-Archives-Hash: fc3fcd98c80078638420f9b6edf0db42 Bug: https://bugs.gentoo.org/625396 --- eclass/meson.eclass | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/eclass/meson.eclass b/eclass/meson.eclass index 25e19dff48e3..5b63f0ef3a33 100644 --- a/eclass/meson.eclass +++ b/eclass/meson.eclass @@ -40,7 +40,7 @@ esac if [[ -z ${_MESON_ECLASS} ]]; then -inherit ninja-utils toolchain-funcs +inherit ninja-utils python-utils-r1 toolchain-funcs fi @@ -148,6 +148,9 @@ meson_src_configure() { STRIP=$(tc-getBUILD_STRIP) fi + # https://bugs.gentoo.org/625396 + python_export_utf8_locale + # Append additional arguments from ebuild mesonargs+=("${emesonargs[@]}") -- 2.13.3