From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5245 invoked from network); 25 May 2009 17:28:55 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.2.5 Received: from new-brage.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.254.104) by ns1.primenet.com.au with SMTP; 25 May 2009 17:28:55 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 97461 invoked from network); 25 May 2009 17:28:50 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 25 May 2009 17:28:50 -0000 Received: (qmail 18713 invoked by alias); 25 May 2009 17:28:46 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 26993 Received: (qmail 18698 invoked from network); 25 May 2009 17:28:46 -0000 Received: from bifrost.dotsrc.org (130.225.254.106) by sunsite.dk with SMTP; 25 May 2009 17:28:46 -0000 Received: from bach.exherbo.org (bach.exherbo.org [78.47.197.147]) by bifrost.dotsrc.org (Postfix) with ESMTPS id 72AF280307FB for ; Mon, 25 May 2009 19:28:43 +0200 (CEST) Received: from ingmar by bach.exherbo.org with local (Exim 4.69) (envelope-from ) id 1M8dyc-0006ep-Lk; Mon, 25 May 2009 17:28:42 +0000 From: Ingmar Vanhassel To: Zsh hackers list Cc: Ingmar Vanhassel Subject: [PATCH] Respect ./configure --htmldir, keeping our default Date: Mon, 25 May 2009 17:28:40 +0000 Message-Id: <1243272520-25517-1-git-send-email-ingmar@exherbo.org> X-Mailer: git-send-email 1.6.3.1 In-Reply-To: <090525081409.ZM14998@torch.brasslantern.com> References: <090525081409.ZM14998@torch.brasslantern.com> X-Virus-Scanned: ClamAV 0.94.2/9390/Mon May 25 14:49:36 2009 on bifrost X-Virus-Status: Clean [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