Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1286623
| From | Arnaldo Carvalho de Melo <acme@kernel.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 00/13] perf tools: Move perf subcommand framework into lib/tools |
| Date | 2015-12-08 16:50 +0100 |
| Message-ID | <qDsGC-4bA-23@gated-at.bofh.it> (permalink) |
| References | (3 earlier) <qCNN8-38D-1@gated-at.bofh.it> <qCZEB-28M-1@gated-at.bofh.it> <qDrUd-3FR-5@gated-at.bofh.it> <qDrUd-3FR-3@gated-at.bofh.it> <qDsng-44U-19@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Em Tue, Dec 08, 2015 at 12:29:15PM -0300, Arnaldo Carvalho de Melo escreveu:
> find: ‘/tmp/tmp.4iuuIJy0Ia/tests’: No such file or directory
> make[4]: *** [tests-clean] Error 1
> make[4]: *** Waiting for unfinished jobs....
> make[3]: *** [clean] Error 2
> [acme@ssdandy linux]$
So, to reproduce:
[acme@zoo linux]$ rmdir /tmp/foo
[acme@zoo linux]$ mkdir /tmp/foo
[acme@zoo linux]$ make O=/tmp/foo -C tools/perf clean
make: Entering directory '/home/git/linux/tools/perf'
CLEAN libtraceevent
CLEAN libapi
CLEAN config
CLEAN libbpf
CLEAN feature
CLEAN tests
find: ‘/tmp/foo/tests’: No such file or directory
Makefile.perf:592: recipe for target 'tests-clean' failed
make[1]: *** [tests-clean] Error 1
make[1]: *** Waiting for unfinished jobs....
Makefile:75: recipe for target 'clean' failed
make: *** [clean] Error 2
make: Leaving directory '/home/git/linux/tools/perf'
[acme@zoo linux]$
Then, applying the patch below, it works, Jiri, would this be the best way to
solve this? The RM call right after the find works because it uses 'rm -f', I think:
o linux]$ patch -p1 < /tmp/a.patch
patching file tools/perf/Makefile.perf
[acme@zoo linux]$ make O=/tmp/foo -C tools/perf clean
make: Entering directory '/home/git/linux/tools/perf'
CLEAN libapi
CLEAN libbpf
CLEAN libtraceevent
CLEAN config
CLEAN feature
CLEAN tests
CLEAN core-objs
CLEAN core-progs
CLEAN core-gen
SUBDIR Documentation
CLEAN Documentation
CLEAN python
make: Leaving directory '/home/git/linux/tools/perf'
[acme@zoo linux]$ mkdir /tmp/foo/tests/
[acme@zoo linux]$ touch /tmp/foo/tests/.a.cmd
[acme@zoo linux]$ make O=/tmp/foo -C tools/perf clean
make: Entering directory '/home/git/linux/tools/perf'
CLEAN libtraceevent
CLEAN libapi
CLEAN libbpf
CLEAN config
CLEAN feature
CLEAN tests
CLEAN core-objs
CLEAN core-progs
CLEAN core-gen
SUBDIR Documentation
CLEAN Documentation
CLEAN python
make: Leaving directory '/home/git/linux/tools/perf'
[acme@zoo linux]$ ls /tmp/foo/tests/
[acme@zoo linux]$
Regards,
- Arnaldo
diff --git a/tools/perf/Makefile.perf b/tools/perf/Makefile.perf
index 8b63dbdff197..331a0377da1f 100644
--- a/tools/perf/Makefile.perf
+++ b/tools/perf/Makefile.perf
@@ -590,7 +590,7 @@ feature-clean:
tests-clean:
$(call QUIET_CLEAN, tests)
- $(Q)find $(OUTPUT)tests -name '*.o' -delete -o -name '\.*.cmd' -delete
+ $(Q)$(test -d $(OUTPUT)tests && find $(OUTPUT)tests -name '*.o' -delete -o -name '\.*.cmd' -delete)
$(Q)$(RM) $(OUTPUT)tests/llvm-src-{base,kbuild,prologue}.c
clean: $(LIBTRACEEVENT)-clean $(LIBAPI)-clean $(LIBBPF)-clean config-clean feature-clean tests-clean
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 00/13] perf tools: Move perf subcommand framework into lib/tools Josh Poimboeuf <jpoimboe@redhat.com> - 2015-12-04 23:10 +0100
Re: [PATCH 00/13] perf tools: Move perf subcommand framework into lib/tools Ingo Molnar <mingo@kernel.org> - 2015-12-06 10:40 +0100
Re: [PATCH 00/13] perf tools: Move perf subcommand framework into lib/tools Jiri Olsa <jolsa@redhat.com> - 2015-12-06 17:00 +0100
Re: [PATCH 00/13] perf tools: Move perf subcommand framework into lib/tools Josh Poimboeuf <jpoimboe@redhat.com> - 2015-12-06 21:10 +0100
Re: [PATCH 00/13] perf tools: Move perf subcommand framework into lib/tools Jiri Olsa <jolsa@redhat.com> - 2015-12-07 09:50 +0100
Re: [PATCH 00/13] perf tools: Move perf subcommand framework into lib/tools Arnaldo Carvalho de Melo <acme@kernel.org> - 2015-12-08 16:00 +0100
Re: [PATCH 00/13] perf tools: Move perf subcommand framework into lib/tools Arnaldo Carvalho de Melo <acme@kernel.org> - 2015-12-08 16:30 +0100
Re: [PATCH 00/13] perf tools: Move perf subcommand framework into lib/tools Arnaldo Carvalho de Melo <acme@kernel.org> - 2015-12-08 16:50 +0100
Re: [PATCH 00/13] perf tools: Move perf subcommand framework into lib/tools Josh Poimboeuf <jpoimboe@redhat.com> - 2015-12-08 16:30 +0100
Re: [PATCH 00/13] perf tools: Move perf subcommand framework into lib/tools Arnaldo Carvalho de Melo <acme@kernel.org> - 2015-12-08 16:00 +0100
Re: [PATCH 00/13] perf tools: Move perf subcommand framework into lib/tools Arnaldo Carvalho de Melo <acme@kernel.org> - 2015-12-06 19:30 +0100
csiph-web