All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] libtracefs: Remove extra DESTDIR in install_doc
@ 2021-01-04 20:54 Steven Rostedt
  0 siblings, 0 replies; only message in thread
From: Steven Rostedt @ 2021-01-04 20:54 UTC (permalink / raw)
  To: Linux Trace Devel

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 --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
 
-- 
2.25.4


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2021-01-04 20:54 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-04 20:54 [PATCH] libtracefs: Remove extra DESTDIR in install_doc Steven Rostedt

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.