From: "Steven Rostedt (VMware)" <rostedt@xxxxxxxxxxx> 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@xxxxxxxxxxx> --- Changes from v1: Removed left over "echo" used to debug the problem. Documentation/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.25.4