On Wed, Jan 15, 2020 at 3:11 AM Michał Mirosław <mirq-linux@xxxxxxxxxxxx> wrote: > > Select deb compression using KDEB_COMPRESS make variable. This allows to > use gzip compression for local or test builds, and that's way faster > than now-default xz compression. > > Signed-off-by: Michał Mirosław <mirq-linux@xxxxxxxxxxxx> > --- Applied to linux-kbuild. Thanks. > v2: rename KPKG_COMPRESS to KDEB_COMPRESS as suggested by Masahiro Yamada > --- > scripts/package/builddeb | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/scripts/package/builddeb b/scripts/package/builddeb > index c4c580f547ef..b68aaeece7c9 100755 > --- a/scripts/package/builddeb > +++ b/scripts/package/builddeb > @@ -43,7 +43,7 @@ create_package() { > > # Create the package > dpkg-gencontrol -p$pname -P"$pdir" > - dpkg --build "$pdir" .. > + dpkg-deb ${KDEB_COMPRESS:+-Z$KDEB_COMPRESS} --build "$pdir" .. > } > > version=$KERNELRELEASE > -- > 2.20.1 > -- Best Regards Masahiro Yamada