diff options
author | jlam <jlam@pkgsrc.org> | 2005-04-28 23:32:43 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-04-28 23:32:43 +0000 |
commit | 0af93478f03a0211ee6ec6b0c81bc048ec4de34d (patch) | |
tree | df4c45b970a5197bc95645ed700db1851305cf56 /time | |
parent | b35fa31e8e6ec9a09c21fe1965e7063b7727b5a5 (diff) | |
download | pkgsrc-0af93478f03a0211ee6ec6b0c81bc048ec4de34d.tar.gz |
Use :sh instead of != to define WWWSERVER to defer evaluation until it's
used in the make targets.
Diffstat (limited to 'time')
-rw-r--r-- | time/pcal/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/time/pcal/Makefile b/time/pcal/Makefile index ca0b1efccdc..ef2890c56b0 100644 --- a/time/pcal/Makefile +++ b/time/pcal/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2005/03/20 21:34:17 salo Exp $ +# $NetBSD: Makefile,v 1.8 2005/04/28 23:32:43 jlam Exp $ # DISTNAME= pcal-4.7 @@ -14,7 +14,7 @@ COMMENT= PostScript calendar program HTDOCS= ${PREFIX}/share/httpd/htdocs CGIBINDIR= ${PREFIX}/libexec/cgi-bin -WWWSERVER!= hostname +WWWSERVER= ${HOSTNAME_CMD:sh} .include "../../mk/bsd.prefs.mk" # for PAPERSIZE .include <bsd.sys.mk> # for CC and HOST_CC |