Hi Steve, On Mon, Oct 12, 2020 at 8:17 PM Steven Rostedt <[email protected]> wrote: > > > [ Removing the powertop mailing list because it's rejecting everything ] > > On Mon, 12 Oct 2020 11:41:20 -0700 > Tony Jones <[email protected]> wrote: > > > On Mon, Oct 12, 2020 at 11:19:50AM -0400, Steven Rostedt wrote: > > > > > Once it's shown that it works for all the package maintainers, I will tag > > > it which should create the tarballs automatically on the above link. > >
Works for me. > Can you see if this patch fixes your current issue? > > -- Steve > > diff --git a/Documentation/Makefile b/Documentation/Makefile > index edb8623..3a981be 100644 > --- a/Documentation/Makefile > +++ b/Documentation/Makefile > @@ -157,7 +157,7 @@ endif > do-install-man: man > $(call QUIET_INSTALL, Documentation-man) \ > $(INSTALL) -d -m 755 $(DESTDIR)$(man3dir); \ > - $(INSTALL) -m 644 $(DOC_MAN3) $(DESTDIR)$(man3dir); > + $(INSTALL) -m 644 $(OUTPUT)*.3 $(DESTDIR)$(man3dir); > > install-man: check-man-tools man do-install-man > I faced the same problem and this patch worked for me. -- Regards Sudip

