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