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 773901382C5 for ; Tue, 26 Jan 2021 15:08:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B2B96E0CBF; Tue, 26 Jan 2021 15:08:41 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 9CBCEE0CBD for ; Tue, 26 Jan 2021 15:08:41 +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 B0EA6340E9E for ; Tue, 26 Jan 2021 15:08:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 66DFB4C for ; Tue, 26 Jan 2021 15:08:39 +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: <1611673716.1660cc295c96cad0ded9c9ed28dfa1679a2c3945.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/seamonkey/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/seamonkey/seamonkey-2.53.6.ebuild X-VCS-Directories: www-client/seamonkey/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 1660cc295c96cad0ded9c9ed28dfa1679a2c3945 X-VCS-Branch: master Date: Tue, 26 Jan 2021 15:08:39 +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: 97534e5f-9f61-469c-ba49-8ba9b4ec62e3 X-Archives-Hash: 926b5f39727dbefde624f5c0c079eac3 commit: 1660cc295c96cad0ded9c9ed28dfa1679a2c3945 Author: Lars Wendler gentoo org> AuthorDate: Tue Jan 26 15:04:54 2021 +0000 Commit: Lars Wendler gentoo org> CommitDate: Tue Jan 26 15:08:36 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1660cc29 www-client/seamonkey: Use mozconfig_annotate instead of mozconfig_add_options_ac Closes: https://bugs.gentoo.org/767292 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Lars Wendler gentoo.org> www-client/seamonkey/seamonkey-2.53.6.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/www-client/seamonkey/seamonkey-2.53.6.ebuild b/www-client/seamonkey/seamonkey-2.53.6.ebuild index f6e913d6d04..c5828fadab2 100644 --- a/www-client/seamonkey/seamonkey-2.53.6.ebuild +++ b/www-client/seamonkey/seamonkey-2.53.6.ebuild @@ -365,14 +365,14 @@ src_configure() { if use lto ; then # Linking only works when using ld.gold when LTO is enabled - mozconfig_add_options_ac "forcing ld=gold due to USE=lto" --enable-linker=gold + mozconfig_annotate "forcing ld=gold due to USE=lto" --enable-linker=gold # ThinLTO is currently broken, see bmo#1644409 - mozconfig_add_options_ac '+lto' --enable-lto=full + mozconfig_annotate '+lto' --enable-lto=full else if tc-ld-is-gold ; then - mozconfig_add_options_ac "linker is set to gold" --enable-linker=gold + mozconfig_annotate "linker is set to gold" --enable-linker=gold else - mozconfig_add_options_ac "linker is set to bfd" --enable-linker=bfd + mozconfig_annotate "linker is set to bfd" --enable-linker=bfd fi fi # LTO flag was handled via configure