On Fri, Apr 7, 2023 at 7:16 PM Masahiro Yamada <masahiroy@xxxxxxxxxx> wrote: > > Commit 05e96e96a315 ("kbuild: use git-archive for source package > creation") split the compression as a separate step to factor out > the common build rules. > > With the previous commit, we got back to the situation where > compressed source tarballs are created by a single rule. > There is no reason to keep the separate compression rules. > > Generate the comressed tar packages directly. > > Signed-off-by: Masahiro Yamada <masahiroy@xxxxxxxxxx> > --- > > scripts/Makefile.package | 27 +++++++++------------------ > 1 file changed, 9 insertions(+), 18 deletions(-) > > diff --git a/scripts/Makefile.package b/scripts/Makefile.package > index 7707975f729b..e0e18d7dfbd5 100644 > --- a/scripts/Makefile.package > +++ b/scripts/Makefile.package > @@ -2,7 +2,6 @@ > # Makefile for the different targets used to generate full packages of a kernel > > include $(srctree)/scripts/Kbuild.include > -include $(srctree)/scripts/Makefile.lib I noticed a bug. I will keep this include directive. Otherwise, perf-tar*-src-pkg targets would be broken. 'cmd_copy' is still used. -- Best Regards Masahiro Yamada