From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1222605-garchives=archives.gentoo.org@lists.gentoo.org> 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 D3859138359 for <garchives@archives.gentoo.org>; Sun, 15 Nov 2020 15:05:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F0F3E08C3; Sun, 15 Nov 2020 15:05:18 +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 02F4CE08C3 for <gentoo-commits@lists.gentoo.org>; Sun, 15 Nov 2020 15:05:17 +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 E42173408CF for <gentoo-commits@lists.gentoo.org>; Sun, 15 Nov 2020 15:05:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 99CF643B for <gentoo-commits@lists.gentoo.org>; Sun, 15 Nov 2020 15:05:15 +0000 (UTC) From: "Sergey Popov" <pinkbyte@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergey Popov" <pinkbyte@gentoo.org> Message-ID: <1605452712.d68a0171e98ec09a53dd65f3385d9cf408d6dedc.pinkbyte@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-firewall/ipt_netflow/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-firewall/ipt_netflow/ipt_netflow-2.4-r1.ebuild net-firewall/ipt_netflow/ipt_netflow-2.5.1-r1.ebuild net-firewall/ipt_netflow/ipt_netflow-9999.ebuild X-VCS-Directories: net-firewall/ipt_netflow/ X-VCS-Committer: pinkbyte X-VCS-Committer-Name: Sergey Popov X-VCS-Revision: d68a0171e98ec09a53dd65f3385d9cf408d6dedc X-VCS-Branch: master Date: Sun, 15 Nov 2020 15:05:15 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: bc1049a8-c031-4bba-a32d-25e1b8c540d9 X-Archives-Hash: 0f1d419ee9ceb6f853da44aa5eccc48e commit: d68a0171e98ec09a53dd65f3385d9cf408d6dedc Author: Sergey Popov <pinkbyte <AT> gentoo <DOT> org> AuthorDate: Sun Nov 15 14:58:59 2020 +0000 Commit: Sergey Popov <pinkbyte <AT> gentoo <DOT> org> CommitDate: Sun Nov 15 15:05:12 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d68a0171 net-firewall/ipt_netflow: respect OBJDUMP and LD variables Repoted-by: Agostino Sarubbo <ago <AT> gentoo.org> Closes: https://bugs.gentoo.org/738060 Package-Manager: Portage-3.0.8, Repoman-3.0.2 Signed-off-by: Sergey Popov <pinkbyte <AT> gentoo.org> net-firewall/ipt_netflow/ipt_netflow-2.4-r1.ebuild | 2 +- net-firewall/ipt_netflow/ipt_netflow-2.5.1-r1.ebuild | 2 +- net-firewall/ipt_netflow/ipt_netflow-9999.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/net-firewall/ipt_netflow/ipt_netflow-2.4-r1.ebuild b/net-firewall/ipt_netflow/ipt_netflow-2.4-r1.ebuild index c3bec366b46..e36de51a30c 100644 --- a/net-firewall/ipt_netflow/ipt_netflow-2.4-r1.ebuild +++ b/net-firewall/ipt_netflow/ipt_netflow-2.4-r1.ebuild @@ -92,7 +92,7 @@ src_configure() { } src_compile() { - emake ARCH="$(tc-arch-kernel)" CC="$(tc-getCC)" all + emake ARCH="$(tc-arch-kernel)" CC="$(tc-getCC)" LD="$(tc-getLD)" OBJDUMP="$(tc-getOBJDUMP)" all } src_install() { diff --git a/net-firewall/ipt_netflow/ipt_netflow-2.5.1-r1.ebuild b/net-firewall/ipt_netflow/ipt_netflow-2.5.1-r1.ebuild index 637824868f6..8fd0b2ad8ee 100644 --- a/net-firewall/ipt_netflow/ipt_netflow-2.5.1-r1.ebuild +++ b/net-firewall/ipt_netflow/ipt_netflow-2.5.1-r1.ebuild @@ -91,7 +91,7 @@ src_configure() { } src_compile() { - emake ARCH="$(tc-arch-kernel)" CC="$(tc-getCC)" all + emake ARCH="$(tc-arch-kernel)" CC="$(tc-getCC)" LD="$(tc-getLD)" OBJDUMP="$(tc-getOBJDUMP)" all } src_install() { diff --git a/net-firewall/ipt_netflow/ipt_netflow-9999.ebuild b/net-firewall/ipt_netflow/ipt_netflow-9999.ebuild index 74ad5f1c71d..d4305e2fc5c 100644 --- a/net-firewall/ipt_netflow/ipt_netflow-9999.ebuild +++ b/net-firewall/ipt_netflow/ipt_netflow-9999.ebuild @@ -92,7 +92,7 @@ src_configure() { } src_compile() { - emake ARCH="$(tc-arch-kernel)" CC="$(tc-getCC)" all + emake ARCH="$(tc-arch-kernel)" CC="$(tc-getCC)" LD="$(tc-getLD)" OBJDUMP="$(tc-getOBJDUMP)" all } src_install() {