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 CF8BE1382C5 for ; Thu, 5 Apr 2018 15:55:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BB764E0BFE; Thu, 5 Apr 2018 15:55:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 95BE6E0BFE for ; Thu, 5 Apr 2018 15:55:27 +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 22C00335C06 for ; Thu, 5 Apr 2018 15:55:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8B092275 for ; Thu, 5 Apr 2018 15:55:24 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1522943686.448467a41fcaf8c70413e45cba5b91b988c26154.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-office/libreoffice/libreoffice-6.0.9999.ebuild app-office/libreoffice/libreoffice-9999.ebuild X-VCS-Directories: app-office/libreoffice/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 448467a41fcaf8c70413e45cba5b91b988c26154 X-VCS-Branch: master Date: Thu, 5 Apr 2018 15:55:24 +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-Archives-Salt: 8a0e85d6-3c9b-43b3-91e1-94d4ac813e19 X-Archives-Hash: 24a88699748d0ebea5875aa84171ddcc commit: 448467a41fcaf8c70413e45cba5b91b988c26154 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Apr 5 15:08:00 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Apr 5 15:54:46 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=448467a4 app-office/libreoffice: Fix build with -flto* Closes: https://bugs.gentoo.org/650208 Package-Manager: Portage-2.3.28, Repoman-2.3.9 app-office/libreoffice/libreoffice-6.0.9999.ebuild | 2 ++ app-office/libreoffice/libreoffice-9999.ebuild | 2 ++ 2 files changed, 4 insertions(+) diff --git a/app-office/libreoffice/libreoffice-6.0.9999.ebuild b/app-office/libreoffice/libreoffice-6.0.9999.ebuild index dcbfe6a9d25..7b989b3abd1 100644 --- a/app-office/libreoffice/libreoffice-6.0.9999.ebuild +++ b/app-office/libreoffice/libreoffice-6.0.9999.ebuild @@ -483,6 +483,8 @@ src_configure() { myeconfargs+=( --with-rhino-jar=$(java-pkg_getjar rhino-1.6 js.jar) ) fi + is-flagq "-flto*" && myeconfargs+=( --enable-lto ) + econf "${myeconfargs[@]}" } diff --git a/app-office/libreoffice/libreoffice-9999.ebuild b/app-office/libreoffice/libreoffice-9999.ebuild index 23aa3d2795c..271f47c5cc6 100644 --- a/app-office/libreoffice/libreoffice-9999.ebuild +++ b/app-office/libreoffice/libreoffice-9999.ebuild @@ -482,6 +482,8 @@ src_configure() { myeconfargs+=( --with-rhino-jar=$(java-pkg_getjar rhino-1.6 js.jar) ) fi + is-flagq "-flto*" && myeconfargs+=( --enable-lto ) + econf "${myeconfargs[@]}" }