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 72DC8138350 for ; Sat, 18 Apr 2020 12:44:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 93857E0882; Sat, 18 Apr 2020 12:44:37 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 4C3E0E0882 for ; Sat, 18 Apr 2020 12:44:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 3813534F121 for ; Sat, 18 Apr 2020 12:44:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C1C0F103 for ; Sat, 18 Apr 2020 12:44:33 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1587213579.9f48774c6b67f91e120b1e993820f981a9161d71.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/xfsprogs/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/xfsprogs/xfsprogs-5.5.0.ebuild sys-fs/xfsprogs/xfsprogs-5.6.0.ebuild X-VCS-Directories: sys-fs/xfsprogs/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 9f48774c6b67f91e120b1e993820f981a9161d71 X-VCS-Branch: master Date: Sat, 18 Apr 2020 12:44:33 +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: 3fb50ea0-3fc1-400a-a393-335d368559ac X-Archives-Hash: 5b24b354471f51ac192b4a7c85294f8e commit: 9f48774c6b67f91e120b1e993820f981a9161d71 Author: Lars Wendler gentoo org> AuthorDate: Sat Apr 18 12:39:39 2020 +0000 Commit: Lars Wendler gentoo org> CommitDate: Sat Apr 18 12:39:39 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f48774c sys-fs/xfsprogs: Build fails with -O3. Replaced with -O2 Closes: https://bugs.gentoo.org/712698 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Lars Wendler gentoo.org> sys-fs/xfsprogs/xfsprogs-5.5.0.ebuild | 3 +++ sys-fs/xfsprogs/xfsprogs-5.6.0.ebuild | 3 +++ 2 files changed, 6 insertions(+) diff --git a/sys-fs/xfsprogs/xfsprogs-5.5.0.ebuild b/sys-fs/xfsprogs/xfsprogs-5.5.0.ebuild index d5ba1a19466..662d88603be 100644 --- a/sys-fs/xfsprogs/xfsprogs-5.5.0.ebuild +++ b/sys-fs/xfsprogs/xfsprogs-5.5.0.ebuild @@ -66,6 +66,9 @@ src_configure() { # Avoid automagic on libdevmapper, #709694 export ac_cv_search_dm_task_create=no + # Build fails with -O3 (bug #712698) + replace-flags -O3 -O2 + # Upstream does NOT support --disable-static anymore, # https://www.spinics.net/lists/linux-xfs/msg30185.html # https://www.spinics.net/lists/linux-xfs/msg30272.html diff --git a/sys-fs/xfsprogs/xfsprogs-5.6.0.ebuild b/sys-fs/xfsprogs/xfsprogs-5.6.0.ebuild index d5ba1a19466..662d88603be 100644 --- a/sys-fs/xfsprogs/xfsprogs-5.6.0.ebuild +++ b/sys-fs/xfsprogs/xfsprogs-5.6.0.ebuild @@ -66,6 +66,9 @@ src_configure() { # Avoid automagic on libdevmapper, #709694 export ac_cv_search_dm_task_create=no + # Build fails with -O3 (bug #712698) + replace-flags -O3 -O2 + # Upstream does NOT support --disable-static anymore, # https://www.spinics.net/lists/linux-xfs/msg30185.html # https://www.spinics.net/lists/linux-xfs/msg30272.html