summaryrefslogtreecommitdiff
path: root/mk/install
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2007-08-10 04:00:43 +0000
committerjlam <jlam@pkgsrc.org>2007-08-10 04:00:43 +0000
commit6ea0c2868e54502f4ba4877dbceaf8a35cca496a (patch)
treef5ec2d4d2a44f28e161664f6f559c5ab716227f3 /mk/install
parent605292a86d8ddc478b7c79174f18649615c4f3df (diff)
downloadpkgsrc-6ea0c2868e54502f4ba4877dbceaf8a35cca496a.tar.gz
Remove ${WRKDIR}/.pkgdb during "install-clean" as that directory
contains files that are generated during the "install" phase. This should fix the problem where PLIST modifications were ignored if the PLIST was modified between a "make deinstall" and a "make reinstall".
Diffstat (limited to 'mk/install')
-rw-r--r--mk/install/install.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/install/install.mk b/mk/install/install.mk
index 58fa17ca92b..8892d9f746d 100644
--- a/mk/install/install.mk
+++ b/mk/install/install.mk
@@ -1,4 +1,4 @@
-# $NetBSD: install.mk,v 1.43 2007/07/02 14:54:10 joerg Exp $
+# $NetBSD: install.mk,v 1.44 2007/08/10 04:00:43 jlam Exp $
#
# This file provides the code for the "install" phase.
#
@@ -332,7 +332,7 @@ privileged-install-hook: .PHONY
### install-clean removes the state files for the "install" and
### later phases so that the "install" target may be re-invoked.
###
-install-clean: .PHONY package-clean check-clean
+install-clean: .PHONY package-clean check-clean _flavor-install-clean
${RUN} ${RM} -f ${PLIST} ${_COOKIE.install}
######################################################################