Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[PATCH 1/2] Respect ./configure --htmldir, keeping our default
- X-seq: zsh-workers 26989
- From: Ingmar Vanhassel <ingmar@xxxxxxxxxxx>
- To: Zsh hackers list <zsh-workers@xxxxxxxxxx>
- Subject: [PATCH 1/2] Respect ./configure --htmldir, keeping our default
- Date: Mon, 25 May 2009 14:02:27 +0000
- Cc: Ingmar Vanhassel <ingmar@xxxxxxxxxxx>
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
---
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..0377160 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)" ""
+override htmldir := $(datadir)/$(tzsh)/htmldoc
+endif
# compilation
CC = @CC@
--
1.6.3.1
Messages sorted by:
Reverse Date,
Date,
Thread,
Author