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 4278A1382C5 for ; Wed, 20 Jan 2021 14:14:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 93401E0855; Wed, 20 Jan 2021 14:13:59 +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 80546E0855 for ; Wed, 20 Jan 2021 14:13:59 +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 BE93E3410B8 for ; Wed, 20 Jan 2021 14:13:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EA4B54B4 for ; Wed, 20 Jan 2021 14:13:53 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1611152022.ea7006327a07e4d6e5b91a1f3865d34af22c7967.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/crun/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/crun/crun-0.16.ebuild X-VCS-Directories: app-emulation/crun/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: ea7006327a07e4d6e5b91a1f3865d34af22c7967 X-VCS-Branch: master Date: Wed, 20 Jan 2021 14:13:53 +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: c3f0a869-68be-4b51-96b0-bb8a1269f39e X-Archives-Hash: 93046bcd67a2d098627d883cd212be3d commit: ea7006327a07e4d6e5b91a1f3865d34af22c7967 Author: Joonas Niilola gentoo org> AuthorDate: Wed Jan 20 14:13:14 2021 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Wed Jan 20 14:13:42 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea700632 app-emulation/crun: clean econf array in 0.16 Signed-off-by: Joonas Niilola gentoo.org> app-emulation/crun/crun-0.16.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app-emulation/crun/crun-0.16.ebuild b/app-emulation/crun/crun-0.16.ebuild index d61c071d12c..202be5b0a53 100644 --- a/app-emulation/crun/crun-0.16.ebuild +++ b/app-emulation/crun/crun-0.16.ebuild @@ -38,11 +38,11 @@ DOCS=( README.md ) src_configure() { local myeconfargs=( - $(use_enable bpf) \ - $(use_enable caps) \ - $(use_enable criu) \ - $(use_enable seccomp) \ - $(use_enable systemd) \ + $(use_enable bpf) + $(use_enable caps) + $(use_enable criu) + $(use_enable seccomp) + $(use_enable systemd) $(usex static-libs '--enable-shared --enable-static' '--enable-shared --disable-static' '' '') )