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 5629A138334 for ; Thu, 30 May 2019 13:06:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4EAE7E07DF; Thu, 30 May 2019 13:06:55 +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 2BC20E07DF for ; Thu, 30 May 2019 13:06:54 +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 A0C083452DB for ; Thu, 30 May 2019 13:06:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2276755B for ; Thu, 30 May 2019 13:06:51 +0000 (UTC) From: "Jory Pratt" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jory Pratt" Message-ID: <1559221600.5d8ce8295f878a102c3ec3cc4c604c31418d4127.anarchy@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/flatbuffers/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/flatbuffers/flatbuffers-1.11.0.ebuild X-VCS-Directories: dev-libs/flatbuffers/ X-VCS-Committer: anarchy X-VCS-Committer-Name: Jory Pratt X-VCS-Revision: 5d8ce8295f878a102c3ec3cc4c604c31418d4127 X-VCS-Branch: master Date: Thu, 30 May 2019 13:06:51 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0c8a7b0b-a8bf-442c-95b8-008561ee2983 X-Archives-Hash: ad7e16209f6e4d1e2c074d3ccb623ab9 commit: 5d8ce8295f878a102c3ec3cc4c604c31418d4127 Author: Jory Pratt gentoo org> AuthorDate: Thu May 30 13:06:40 2019 +0000 Commit: Jory Pratt gentoo org> CommitDate: Thu May 30 13:06:40 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d8ce829 dev-libs/flatbuffers: fix musl locale issue Package-Manager: Portage-2.3.67, Repoman-2.3.13 Signed-off-by: Jory Pratt gentoo.org> dev-libs/flatbuffers/flatbuffers-1.11.0.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev-libs/flatbuffers/flatbuffers-1.11.0.ebuild b/dev-libs/flatbuffers/flatbuffers-1.11.0.ebuild index 30da115709d..2bf8b35e8dd 100644 --- a/dev-libs/flatbuffers/flatbuffers-1.11.0.ebuild +++ b/dev-libs/flatbuffers/flatbuffers-1.11.0.ebuild @@ -23,5 +23,7 @@ src_configure() { -DFLATBUFFERS_BUILD_TESTS=$(usex test) ) + use elibc_musl && mycmakeargs+=( -DFLATBUFFERS_LOCALE_INDEPENDENT=0 ) + cmake-utils_src_configure }