From: Michael J Gruber Date: Tue, 10 Feb 2009 15:14:13 +0000 (+0100) Subject: Fix the installation path for html documentation X-Git-Tag: v1.6.2-rc1~35 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=8ea7ad694be942350457197357127ed81b2550fe;p=git.git Fix the installation path for html documentation 026fa0d (Move computation of absolute paths from Makefile to runtime in preparation for RUNTIME_PREFIX, 2009-01-18) broke the installation of html documentation. A relative htmldir is given to Documentation/Makefile and html documentations are installed in a subdirectory of "Documentation" in the source tree. Fix this by not exporting htmldir from Makefile; this allows Documentation/Makefile to compute the htmldir from the prefix. Signed-off-by: Michael J Gruber Signed-off-by: Junio C Hamano --- diff --git a/Makefile b/Makefile index 108051b52..b040a96e5 100644 --- a/Makefile +++ b/Makefile @@ -228,7 +228,7 @@ GITWEB_FAVICON = git-favicon.png GITWEB_SITE_HEADER = GITWEB_SITE_FOOTER = -export prefix bindir sharedir htmldir sysconfdir +export prefix bindir sharedir sysconfdir CC = gcc AR = ar