aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Rostedt (VMware) <rostedt@goodmis.org>2020-10-14 13:06:54 -0400
committerSteven Rostedt (VMware) <rostedt@goodmis.org>2020-10-14 13:06:54 -0400
commit77d60b7744d47425de58d5ab71ca650a2dad74cd (patch)
treefc282806d0292e51eca73d77a3e81c8dc551420e
parent5dd505f3aba255c5fbc2a6dbed57fcba51b400f6 (diff)
downloadlibtraceevent-77d60b7744d47425de58d5ab71ca650a2dad74cd.tar.gz
lib traceevent doc: Install generated *.3 fileslibtraceevent-1.1.0
The installation of the man pages currently reference the files that create them, instead of the files that should be installed. This causes an error when the .3 files are of the man page names and not the names of the .txt files. Link: https://lore.kernel.org/r/20201009104954.0fd440b5@gandalf.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 edb8623..3a981be 100644
--- a/Documentation/Makefile
+++ b/Documentation/Makefile
@@ -157,7 +157,7 @@ endif
do-install-man: man
$(call QUIET_INSTALL, Documentation-man) \
$(INSTALL) -d -m 755 $(DESTDIR)$(man3dir); \
- $(INSTALL) -m 644 $(DOC_MAN3) $(DESTDIR)$(man3dir);
+ $(INSTALL) -m 644 $(OUTPUT)*.3 $(DESTDIR)$(man3dir);
install-man: check-man-tools man do-install-man