Re: [gentoo-dev] [PATCH 1/2] linux-mod-r1.eclass: Require the compression to succeed

2023-12-30 Thread Michał Górny
On Sat, 2023-12-30 at 11:34 +0100, Ulrich Mueller wrote: > > > > > > On Sat, 30 Dec 2023, Michał Górny wrote: > > > - edob "${compress[@]}" -- "${@}" > > + edob "${compress[@]}" -- "${@}" || die > > Doesn't edob already die by itself? Oh, indeed it does. I misread the comment above then.

Re: [gentoo-dev] [PATCH 1/2] linux-mod-r1.eclass: Require the compression to succeed

2023-12-30 Thread Ulrich Mueller
> On Sat, 30 Dec 2023, Michał Górny wrote: > - edob "${compress[@]}" -- "${@}" > + edob "${compress[@]}" -- "${@}" || die Doesn't edob already die by itself? signature.asc Description: PGP signature

[gentoo-dev] [PATCH 1/2] linux-mod-r1.eclass: Require the compression to succeed

2023-12-29 Thread Michał Górny
Now that the module compression is conditional to USE=modules-compress, we no longer need to allow it to fail gracefully. If user enabled the compression explicitly, they expect it to succeed. If they don't have the tools, they can always flip it off again. Signed-off-by: Michał Górny ---