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 5F6151580B3 for ; Wed, 1 Sep 2021 07:17:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8AF14E08FE; Wed, 1 Sep 2021 07:17:36 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 286AAE08FE for ; Wed, 1 Sep 2021 07:17:36 +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 4CEF2335DC2 for ; Wed, 1 Sep 2021 07:17:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0832A8D for ; Wed, 1 Sep 2021 07:17:34 +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: <1630480646.3de85ace798d0d7db3b3513653530488d14ecebe.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/iproute2/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/iproute2/iproute2-9999.ebuild X-VCS-Directories: sys-apps/iproute2/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 3de85ace798d0d7db3b3513653530488d14ecebe X-VCS-Branch: master Date: Wed, 1 Sep 2021 07:17:34 +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: bb6e5519-3d3b-4f6b-b725-038485605f7a X-Archives-Hash: 48a2366bad03a4d2a13b4edd55dd5f33 commit: 3de85ace798d0d7db3b3513653530488d14ecebe Author: Lars Wendler gentoo org> AuthorDate: Wed Sep 1 07:14:19 2021 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Sep 1 07:17:26 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3de85ace sys-apps/iproute2: Synced live ebuild Signed-off-by: Lars Wendler gentoo.org> sys-apps/iproute2/iproute2-9999.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/sys-apps/iproute2/iproute2-9999.ebuild b/sys-apps/iproute2/iproute2-9999.ebuild index 14d225e3e58..367b3541cbf 100644 --- a/sys-apps/iproute2/iproute2-9999.ebuild +++ b/sys-apps/iproute2/iproute2-9999.ebuild @@ -52,6 +52,11 @@ PATCHES=( "${FILESDIR}"/${PN}-5.7.0-mix-signal.h-include.patch ) +doecho() { + echo "${@}" + "${@}" || die +} + src_prepare() { if ! use ipv6 ; then PATCHES+=( @@ -102,8 +107,8 @@ src_configure() { popd >/dev/null # run "configure" script first which will create "config.mk"... - LIBBPF_FORCE="$(usex bpf on off)" \ - econf + # Using econf breaks since 5.14.0 (a9c3d70d902a0473ee5c13336317006a52ce8242) + doecho ./configure --libbpf_force $(usex bpf on off) # ...now switch on/off requested features via USE flags # this is only useful if the test did not set other things, per bug #643722