Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[PATCH] Respect ./configure --htmldir, keeping our default
- X-seq: zsh-workers 26993
- From: Ingmar Vanhassel <ingmar@xxxxxxxxxxx>
- To: Zsh hackers list <zsh-workers@xxxxxxxxxx>
- Subject: [PATCH] Respect ./configure --htmldir, keeping our default
- Date: Mon, 25 May 2009 17:28:40 +0000
- Cc: Ingmar Vanhassel <ingmar@xxxxxxxxxxx>
- In-reply-to: <090525081409.ZM14998@xxxxxxxxxxxxxxxxxxxxxx>
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
- References: <090525081409.ZM14998@xxxxxxxxxxxxxxxxxxxxxx>
[Resend, fixed another thinko]
Updated patch, without relying on GNU Make syntax.
Apparently override doesn't do what I think it does, so it shouldn't've been
there in the first place.
---
Config/defs.mk.in | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/Config/defs.mk.in b/Config/defs.mk.in
index 5195bf8..81c1edd 100644
--- a/Config/defs.mk.in
+++ b/Config/defs.mk.in
@@ -50,7 +50,10 @@ fndir = @fndir@
sitefndir = @sitefndir@
scriptdir = @scriptdir@
sitescriptdir = @sitescriptdir@
-htmldir = $(datadir)/$(tzsh)/htmldoc
+htmldir = @htmldir@
+ifeq "$(htmldir)" ""
+htmldir = $(datadir)/$(tzsh)/htmldoc
+endif
# compilation
CC = @CC@
--
1.6.3.1
Messages sorted by:
Reverse Date,
Date,
Thread,
Author