diff options
author | jlam <jlam> | 2001-11-25 18:59:45 +0000 |
---|---|---|
committer | jlam <jlam> | 2001-11-25 18:59:45 +0000 |
commit | c191dc788b25d2c1365f262d8e83cc9692b21f2e (patch) | |
tree | 78f3dfe5e355bfe3bf2e730202f3d29cb7da98d5 /www/thttpd/Makefile | |
parent | 1ea65f1d60eb5d278710ca59576558e885a77afd (diff) | |
download | pkgsrc-c191dc788b25d2c1365f262d8e83cc9692b21f2e.tar.gz |
PKG_SYSCONFDIR is where the configuration files for a package may be found.
This value may be customized in various ways:
PKG_SYSCONFBASE is the main config directory under which all package
configuration files are to be found.
PKG_SYSCONFSUBDIR is the subdirectory of PKG_SYSCONFBASE under which the
configuration files for a particular package may be found.
PKG_SYSCONFDIR.${PKGBASE} overrides the value of ${PKG_SYSCONFDIR} for a
particular package.
Users will typically want to set PKG_SYSCONFBASE to /etc, or accept the
default location of ${PREFIX}/etc.
This obsoletes the use of CONFDIR, which was active for only 6 days, so no
need to have a workaround to still accept old CONFDIR settings.
Diffstat (limited to 'www/thttpd/Makefile')
-rw-r--r-- | www/thttpd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/thttpd/Makefile b/www/thttpd/Makefile index cde36b933e9..5691f63c6a5 100644 --- a/www/thttpd/Makefile +++ b/www/thttpd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2001/11/21 15:44:24 jlam Exp $ +# $NetBSD: Makefile,v 1.16 2001/11/25 18:59:50 jlam Exp $ DISTNAME= thttpd-2.21b CATEGORIES= www @@ -17,7 +17,7 @@ GNU_CONFIGURE= # defined BUILD_DEFS+= USE_INET6 EGDIR= ${PREFIX}/share/examples -CONF_FILES= ${EGDIR}/thttpd.conf ${CONFDIR}/thttpd.conf +CONF_FILES= ${EGDIR}/thttpd.conf ${PKG_SYSCONFDIR}/thttpd.conf RCD_SCRIPTS= thttpd pre-configure: |