diff options
author | James Clark <james.clark@arm.com> | 2021-08-16 16:07:05 +0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2021-09-01 17:26:01 +0300 |
commit | 8af52e69772d053bc7caab12ad1c59f18ef2e3e2 (patch) | |
tree | 1e1b459f759d1d29a192bfba19ce377ceec9c5b0 /tools/perf/util/cs-etm-decoder/cs-etm-decoder.c | |
parent | 79e7ed56d7e8899827d977d9dbd381b0ddb7a52a (diff) | |
download | linux-8af52e69772d053bc7caab12ad1c59f18ef2e3e2.tar.xz |
tools build: Fix feature detect clean for out of source builds
Currently the clean target when using O= isn't cleaning the feature
detect output. This is because O= and OUTPUT= are set to canonical
paths. For example in tools/perf/Makefile:
FULL_O := $(shell cd $(PWD); readlink -f $(O) || echo $(O))
This means that OUTPUT ends in a / and most usages prepend it to a file
without adding an extra /. This line that was changed adds an extra /
before the 'feature' folder but not to the end, resulting in a clean
command like this:
rm -f /tmp/build//featuretest-all.bin ...
After the change the clean command looks like this:
rm -f /tmp/build/feature/test-all.bin ...
Fixes: 762323eb39a257c3 ("perf build: Move feature cleanup under tools/build")
Signed-off-by: James Clark <james.clark@arm.com>
Acked-by: Jiri Olsa <jolsa@kernel.org>
Link: http://lore.kernel.org/lkml/20210816130705.1331868-1-james.clark@arm.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/cs-etm-decoder/cs-etm-decoder.c')
0 files changed, 0 insertions, 0 deletions