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 3B90A138350 for ; Sun, 26 Jan 2020 09:55:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3F139E0886; Sun, 26 Jan 2020 09:55:26 +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 1D947E0886 for ; Sun, 26 Jan 2020 09:55:26 +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 9654A34E2D4 for ; Sun, 26 Jan 2020 09:55:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 97DC43E for ; Sun, 26 Jan 2020 09:55:21 +0000 (UTC) From: "Cédric Krier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Cédric Krier" Message-ID: <1580032517.ac27e57792ba26e4ff4c924c2202a0b180e7d384.cedk@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/mercurial/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/mercurial/mercurial-5.2.2.ebuild X-VCS-Directories: dev-vcs/mercurial/ X-VCS-Committer: cedk X-VCS-Committer-Name: Cédric Krier X-VCS-Revision: ac27e57792ba26e4ff4c924c2202a0b180e7d384 X-VCS-Branch: master Date: Sun, 26 Jan 2020 09:55:21 +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: 6449e584-c4bb-4e9f-a6d9-ea195d56290e X-Archives-Hash: ea6abb461a71b5589b3d31c66f410f9e commit: ac27e57792ba26e4ff4c924c2202a0b180e7d384 Author: Cédric Krier gentoo org> AuthorDate: Sun Jan 26 09:54:57 2020 +0000 Commit: Cédric Krier gentoo org> CommitDate: Sun Jan 26 09:55:17 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac27e577 dev-vcs/mercurial: Make CFLAGS local before modification Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Cédric Krier gentoo.org> dev-vcs/mercurial/mercurial-5.2.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-vcs/mercurial/mercurial-5.2.2.ebuild b/dev-vcs/mercurial/mercurial-5.2.2.ebuild index 339f1ec904c..e189226b04d 100644 --- a/dev-vcs/mercurial/mercurial-5.2.2.ebuild +++ b/dev-vcs/mercurial/mercurial-5.2.2.ebuild @@ -53,7 +53,7 @@ python_prepare_all() { python_compile() { strip-flags -ftracer -ftree-vectorize - python_is_python3 || append-flags -fno-strict-aliasing + python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing" distutils-r1_python_compile build_ext --no-zstd }