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 459ED138350 for ; Tue, 5 May 2020 15:25:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 888B6E08FB; Tue, 5 May 2020 15:25:29 +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 74AE3E08FB for ; Tue, 5 May 2020 15:25:29 +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 6CB0834F5E1 for ; Tue, 5 May 2020 15:25:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2162A1D6 for ; Tue, 5 May 2020 15:24:57 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1588692285.cc198b47279beb6bf6677a0f0a5d21ea3f92d183.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/efl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/efl/efl-1.24.0.ebuild X-VCS-Directories: dev-libs/efl/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: cc198b47279beb6bf6677a0f0a5d21ea3f92d183 X-VCS-Branch: master Date: Tue, 5 May 2020 15:24:57 +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: 00f22d0b-680a-4c87-aa92-740d22bb38f1 X-Archives-Hash: 436c2e5526d456f30f7474b997748a5b commit: cc198b47279beb6bf6677a0f0a5d21ea3f92d183 Author: Joonas Niilola gentoo org> AuthorDate: Tue May 5 15:24:24 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Tue May 5 15:24:45 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc198b47 dev-libs/efl: -fno-common temporary fix Closes: https://bugs.gentoo.org/707258 Signed-off-by: Joonas Niilola gentoo.org> dev-libs/efl/efl-1.24.0.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-libs/efl/efl-1.24.0.ebuild b/dev-libs/efl/efl-1.24.0.ebuild index 745ca8e21df..2c2dcccfc5b 100644 --- a/dev-libs/efl/efl-1.24.0.ebuild +++ b/dev-libs/efl/efl-1.24.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit meson xdg-utils +inherit flag-o-matic meson xdg-utils DESCRIPTION="Enlightenment Foundation Libraries all-in-one package" HOMEPAGE="https://www.enlightenment.org" @@ -244,6 +244,8 @@ src_configure() { fi emesonargs+=( -D lua-interpreter="${luaChoice}" ) + append-cflags -fcommon + meson_src_configure }