lkml.org 
[lkml]   [2022]   [Aug]   [23]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 5.19 234/365] tools/rtla: Fix command symlinks
    Date
    From: Ben Hutchings <benh@debian.org>

    commit ff5a55dcdb343e3db9b9fb08795b78544b032773 upstream.

    "ln -s" stores the next argument directly as the symlink target, so
    it needs to be a relative path. In this case, just "rtla".

    Link: https://lore.kernel.org/linux-trace-devel/YtLBXMI6Ui4HLIF1@decadent.org.uk

    Fixes: 0605bf009f18 ("rtla: Add osnoise tool")
    Fixes: a828cd18bc4a ("rtla: Add timerlat tool and timelart top mode")
    Signed-off-by: Ben Hutchings <benh@debian.org>
    Acked-by: Daniel Bristot de Oliveira <bristot@kernel.org>
    Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    ---
    tools/tracing/rtla/Makefile | 4 ++--
    1 file changed, 2 insertions(+), 2 deletions(-)

    diff --git a/tools/tracing/rtla/Makefile b/tools/tracing/rtla/Makefile
    index 1bea2d16d4c1..b8fe10d941ce 100644
    --- a/tools/tracing/rtla/Makefile
    +++ b/tools/tracing/rtla/Makefile
    @@ -108,9 +108,9 @@ install: doc_install
    $(INSTALL) rtla -m 755 $(DESTDIR)$(BINDIR)
    $(STRIP) $(DESTDIR)$(BINDIR)/rtla
    @test ! -f $(DESTDIR)$(BINDIR)/osnoise || rm $(DESTDIR)$(BINDIR)/osnoise
    - ln -s $(DESTDIR)$(BINDIR)/rtla $(DESTDIR)$(BINDIR)/osnoise
    + ln -s rtla $(DESTDIR)$(BINDIR)/osnoise
    @test ! -f $(DESTDIR)$(BINDIR)/timerlat || rm $(DESTDIR)$(BINDIR)/timerlat
    - ln -s $(DESTDIR)$(BINDIR)/rtla $(DESTDIR)$(BINDIR)/timerlat
    + ln -s rtla $(DESTDIR)$(BINDIR)/timerlat

    .PHONY: clean tarball
    clean: doc_clean
    --
    2.37.2


    \
     
     \ /
      Last update: 2022-08-23 11:13    [W:3.196 / U:0.556 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site