diff mbox series

libtracefs: Remove extra DESTDIR in install_doc

Message ID 20210104155400.267717c1@gandalf.local.home (mailing list archive)
State Superseded
Headers show
Series libtracefs: Remove extra DESTDIR in install_doc | expand

Commit Message

Steven Rostedt Jan. 4, 2021, 8:54 p.m. UTC
From: "Steven Rostedt (VMware)" <rostedt@goodmis.org>

The do_install macro already adds the prefix of DESTDIR to the files that it
is installing, but the install_doc added it as well, which caused it to be
added twice and making the DESTDIR path within the DESTDIR where it
installed.

Remove it.

Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
---
 Documentation/Makefile | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/Documentation/Makefile b/Documentation/Makefile
index 72b6939..ae38905 100644
--- a/Documentation/Makefile
+++ b/Documentation/Makefile
@@ -146,12 +146,13 @@  ifdef missing_tools
 endif
 
 do-install-man: man
-	$(Q)$(call do_install,$(OUTPUT)*.3,$(DESTDIR)$(man3dir),644);
+	@echo "man:$(man3dir) dest:$(DESTDIR) prefix:$(prefix)"
+	$(Q)$(call do_install,$(OUTPUT)*.3,$(man3dir),644);
 
 install-man: man do-install-man
 
 do-install-html: html
-	$(Q)$(call do_install,$(OUTPUT)*.html,$(DESTDIR)$(htmldir),644);
+	$(Q)$(call do_install,$(OUTPUT)*.html,$(htmldir),644);
 
 install-html: html do-install-html