* [PATCH] fix the installation path for html documentation
@ 2009-02-10 15:14 Michael J Gruber
2009-02-10 20:25 ` Johannes Sixt
0 siblings, 1 reply; 3+ messages in thread
From: Michael J Gruber @ 2009-02-10 15:14 UTC (permalink / raw)
To: git; +Cc: Johannes Sixt, Steffen Prohaska, Junio C Hamano
Since 026fa0d5ad9538ca76838070861531c037d7b9ba (Move computation of
absolute paths from Makefile to runtime (in preparation for
RUNTIME_PREFIX) the installation of html doc was broken:
Documentation/Makefile does not know how to resolve relative dirs, which
results in html doc being installed in
$(git-build-root)/Documentation/share/doc/git-doc.
Fix this by not exporting htmldir from Makefile since this allows
Documentation/Makefile to compute htmldir from prefix.
Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
---
An alternative would be to teach Documentation/Makefile to take the
relative htmldir and make it into an absolute path. But the approach I'm
taking with this patch as analogous to how mandir is handled, with the
same draw back. But all is well as long as the build monkey messes with
prefix only.
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index 27b9569..862b96c 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
--
1.6.1.2.253.ga34a
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] fix the installation path for html documentation
2009-02-10 15:14 [PATCH] fix the installation path for html documentation Michael J Gruber
@ 2009-02-10 20:25 ` Johannes Sixt
2009-02-11 18:39 ` Junio C Hamano
0 siblings, 1 reply; 3+ messages in thread
From: Johannes Sixt @ 2009-02-10 20:25 UTC (permalink / raw)
To: Michael J Gruber; +Cc: git, Steffen Prohaska, Junio C Hamano
On Dienstag, 10. Februar 2009, Michael J Gruber wrote:
> Since 026fa0d5ad9538ca76838070861531c037d7b9ba (Move computation of
> absolute paths from Makefile to runtime (in preparation for
> RUNTIME_PREFIX) the installation of html doc was broken:
> Documentation/Makefile does not know how to resolve relative dirs, which
> results in html doc being installed in
> $(git-build-root)/Documentation/share/doc/git-doc.
>
> Fix this by not exporting htmldir from Makefile since this allows
> Documentation/Makefile to compute htmldir from prefix.
>
> Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
> ---
> An alternative would be to teach Documentation/Makefile to take the
> relative htmldir and make it into an absolute path. But the approach I'm
> taking with this patch as analogous to how mandir is handled, with the
> same draw back. But all is well as long as the build monkey messes with
> prefix only.
Makes sense. There is no point handling mandir and htmldir differently.
-- Hannes
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-02-11 18:42 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-10 15:14 [PATCH] fix the installation path for html documentation Michael J Gruber
2009-02-10 20:25 ` Johannes Sixt
2009-02-11 18:39 ` Junio C Hamano
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).