Message ID | 2482827.XuMzNZMSYQ@c100 |
---|---|
State | New |
Headers | show |
Series | tools/bootconfig: Create missing directories in Makefile install object if needed | expand |
On Fri, 25 Sep 2020 17:09:09 +0200 Thomas Renninger <trenn@suse.de> wrote: > Signed-off-by: Thomas Renninger <trenn@suse.de> Looks good to me. Acked-by: Masami Hiramatsu <mhiramat@kernel.org> Thanks! > > --- > tools/bootconfig/Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > --- a/tools/bootconfig/Makefile > +++ b/tools/bootconfig/Makefile > @@ -24,7 +24,7 @@ > ./test-bootconfig.sh $(OUTPUT) > > install: $(ALL_PROGRAMS) > - install $(OUTPUT)bootconfig $(DESTDIR)$(bindir) > + install -D $(OUTPUT)bootconfig $(DESTDIR)$(bindir)/bootconfig > > clean: > $(RM) -f $(OUTPUT)*.o $(ALL_PROGRAMS) > > > -- Masami Hiramatsu <mhiramat@kernel.org>
--- a/tools/bootconfig/Makefile +++ b/tools/bootconfig/Makefile @@ -24,7 +24,7 @@ ./test-bootconfig.sh $(OUTPUT) install: $(ALL_PROGRAMS) - install $(OUTPUT)bootconfig $(DESTDIR)$(bindir) + install -D $(OUTPUT)bootconfig $(DESTDIR)$(bindir)/bootconfig clean: $(RM) -f $(OUTPUT)*.o $(ALL_PROGRAMS)
Signed-off-by: Thomas Renninger <trenn@suse.de> --- tools/bootconfig/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)