aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Rostedt (VMware) <rostedt@goodmis.org>2021-12-17 00:34:45 -0500
committerSteven Rostedt <rostedt@goodmis.org>2021-12-17 22:07:04 -0500
commit456f1fa5372cfd84a34bf6e0a5788b33e8d9394f (patch)
tree267f23384c28ffbabbb0b9b305fed39c2c9d31bc
parent6064b38e6dca089fd8e2fda9354e551b6c831fac (diff)
downloadlibtraceevent-456f1fa5372cfd84a34bf6e0a5788b33e8d9394f.tar.gz
libtraceevent: Remove *.3 and *.m documentation files from build directory
The clean target in the make file for the documentation used just *.3 and *.m to remove the temporary files. These files are built in the build directory, and the clean does not affect them if a remote directory is used to build the documentation. Link: https://lore.kernel.org/linux-trace-devel/20211217003445.7d4c9025@oasis.local.home Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
-rw-r--r--Documentation/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/Makefile b/Documentation/Makefile
index 5904b79..39f2be4 100644
--- a/Documentation/Makefile
+++ b/Documentation/Makefile
@@ -190,7 +190,7 @@ endif
CLEAN_FILES = \
$(MAN_XML) $(addsuffix +,$(MAN_XML)) \
$(MAN_HTML) $(addsuffix +,$(MAN_HTML)) \
- $(DOC_MAN3) *.3 *.m
+ $(DOC_MAN3) $(OUTPUT)*.3 $(OUTPUT)*.m
clean:
$(call QUIET_CLEAN, Documentation) $(RM) $(CLEAN_FILES)