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 EA78E138359 for ; Sat, 11 Jul 2020 21:42:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B6168E05C1; Sat, 11 Jul 2020 21:42:23 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 9249FE05C1 for ; Sat, 11 Jul 2020 21:42:23 +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 15E8134F945 for ; Sat, 11 Jul 2020 21:42:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2942321D for ; Sat, 11 Jul 2020 21:42:16 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1594503730.3b0e5e3d45daef36c94729f2dda9a3f83a38b827.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-servers/lighttpd/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-servers/lighttpd/lighttpd-1.4.55.ebuild X-VCS-Directories: www-servers/lighttpd/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 3b0e5e3d45daef36c94729f2dda9a3f83a38b827 X-VCS-Branch: master Date: Sat, 11 Jul 2020 21:42:16 +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: b302cc28-d1c4-440d-9825-b3ef43a69c17 X-Archives-Hash: e5ca7e742e1304d6ec23b779bc1ba4e0 commit: 3b0e5e3d45daef36c94729f2dda9a3f83a38b827 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Jul 11 21:39:53 2020 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Sat Jul 11 21:42:10 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b0e5e3d www-servers/lighttpd: respect CC_FOR_BUILD Closes: https://bugs.gentoo.org/show_bug.cgi?id=732260 Package-Manager: Portage-2.3.99, Repoman-2.3.23 Signed-off-by: Mikle Kolyada gentoo.org> www-servers/lighttpd/lighttpd-1.4.55.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/www-servers/lighttpd/lighttpd-1.4.55.ebuild b/www-servers/lighttpd/lighttpd-1.4.55.ebuild index 691b80ba1c6..a2bba42a2ca 100644 --- a/www-servers/lighttpd/lighttpd-1.4.55.ebuild +++ b/www-servers/lighttpd/lighttpd-1.4.55.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit autotools flag-o-matic readme.gentoo-r1 systemd +inherit autotools flag-o-matic readme.gentoo-r1 systemd toolchain-funcs DESCRIPTION="Lightweight high-performance web server" HOMEPAGE="https://www.lighttpd.net https://github.com/lighttpd" @@ -118,7 +118,9 @@ src_prepare() { } src_configure() { - econf --libdir=/usr/$(get_libdir)/${PN} \ + econf \ + CC_FOR_BUILD=$(tc-getBUILD_CC) \ + --libdir=/usr/$(get_libdir)/${PN} \ --enable-lfs \ $(use_enable ipv6) \ $(use_enable mmap) \