summaryrefslogtreecommitdiff
path: root/mk/bsd.pkg.install.mk
diff options
context:
space:
mode:
authorjlam <jlam>2001-11-21 16:10:03 +0000
committerjlam <jlam>2001-11-21 16:10:03 +0000
commit1e623ae88f656a1e62331b4778818f237d4698b7 (patch)
tree367e59acef11cb367587afc0eb61e48ba931605a /mk/bsd.pkg.install.mk
parent0c64b23816c6068b47b5e876f0817820fd093b0d (diff)
downloadpkgsrc-1e623ae88f656a1e62331b4778818f237d4698b7.tar.gz
Refer to /etc/rc.d as ${RCD_SCRIPTS_DIR} more thoroughly.
Diffstat (limited to 'mk/bsd.pkg.install.mk')
-rw-r--r--mk/bsd.pkg.install.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/bsd.pkg.install.mk b/mk/bsd.pkg.install.mk
index 9ca10c26d08..1adaf40706e 100644
--- a/mk/bsd.pkg.install.mk
+++ b/mk/bsd.pkg.install.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.pkg.install.mk,v 1.3 2001/11/21 15:43:01 jlam Exp $
+# $NetBSD: bsd.pkg.install.mk,v 1.4 2001/11/21 16:10:03 jlam Exp $
#
# This Makefile fragment is included by package Makefiles to use the common
# INSTALL/DEINSTALL scripts. To use this Makefile fragment, simply:
@@ -134,7 +134,7 @@ FILES_SUBST+= RCD_SCRIPTS_DIR=${RCD_SCRIPTS_DIR}
# created and should attempt to be destroyed by the INSTALL/DEINSTALL
# scripts. MAKE_DIRS is used the same way, but the package admin
# isn't prompted to remove the directory at post-deinstall time if it
-# isn't empty. For convenience, ${CONFDIR} and /etc/rc.d are
+# isn't empty. For convenience, ${CONFDIR} and ${RCD_SCRIPTS_DIR} are
# automatically added to MAKE_DIRS.
#
# OWN_DIRS_PERMS contains a list of "directory owner group mode" sublists
@@ -145,7 +145,7 @@ FILES_SUBST+= RCD_SCRIPTS_DIR=${RCD_SCRIPTS_DIR}
#
MAKE_DIRS?= # empty
MAKE_DIRS_PERMS?= # empty
-_MAKE_DIRS= ${CONFDIR} /etc/rc.d ${MAKE_DIRS}
+_MAKE_DIRS= ${CONFDIR} ${RCD_SCRIPTS_DIR} ${MAKE_DIRS}
OWN_DIRS?= # empty
OWN_DIRS_PERMS?= # empty
FILES_SUBST+= MAKE_DIRS=${_MAKE_DIRS:Q}