commit: ea7006327a07e4d6e5b91a1f3865d34af22c7967 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org> AuthorDate: Wed Jan 20 14:13:14 2021 +0000 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> 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 <juippis <AT> 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' '' '') )