Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

perf Documentation: Fix out-of-tree asciidoctor man page generation

The dependency for the man page rule using asciidoctor incorrectly
specifies a source file in $(OUTPUT). When building out-of-tree, the
source file is not found, resulting in a fall-back to the following rule
which uses xmlto.

Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/20180916151704.GF4765@decadent.org.uk
Fixes: ffef80ecf89f ("perf Documentation: Support for asciidoctor")
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

authored by

Ben Hutchings and committed by
Arnaldo Carvalho de Melo
169e366c 6d41907c

+1 -1
+1 -1
tools/perf/Documentation/Makefile
··· 280 280 mv $@+ $@ 281 281 282 282 ifdef USE_ASCIIDOCTOR 283 - $(OUTPUT)%.1 $(OUTPUT)%.5 $(OUTPUT)%.7 : $(OUTPUT)%.txt 283 + $(OUTPUT)%.1 $(OUTPUT)%.5 $(OUTPUT)%.7 : %.txt 284 284 $(QUIET_ASCIIDOC)$(RM) $@+ $@ && \ 285 285 $(ASCIIDOC) -b manpage -d manpage \ 286 286 $(ASCIIDOC_EXTRA) -aperf_version=$(PERF_VERSION) -o $@+ $< && \