diff mbox series

[v2] libtracefs: Remove extra DESTDIR in install_doc

Message ID 20210104155524.6abf07dd@gandalf.local.home (mailing list archive)
State Accepted
Commit 6c7c3f69d815ed0e8f85fc76114be0a6803489f8
Headers show
Series [v2] libtracefs: Remove extra DESTDIR in install_doc | expand

Commit Message

Steven Rostedt Jan. 4, 2021, 8:55 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>
---
Changes from v1: Removed left over "echo" used to debug the problem.

 Documentation/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/Documentation/Makefile b/Documentation/Makefile
index 72b6939..54526e2 100644
--- a/Documentation/Makefile
+++ b/Documentation/Makefile
@@ -146,12 +146,12 @@  ifdef missing_tools
 endif
 
 do-install-man: man
-	$(Q)$(call do_install,$(OUTPUT)*.3,$(DESTDIR)$(man3dir),644);
+	$(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