diff options
author | jlam <jlam@pkgsrc.org> | 2005-09-16 06:09:02 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-09-16 06:09:02 +0000 |
commit | fe848c1105bf970a17fc9ecd81cd84546e28d43c (patch) | |
tree | 3427b4f68d6cfe1a308847c3795de1122015ba2f /mk | |
parent | 5653a0c044b44badeb8ffb2a70a5f615d4247292 (diff) | |
download | pkgsrc-fe848c1105bf970a17fc9ecd81cd84546e28d43c.tar.gz |
Remove the CHECK_FILES bits during deinstall so that they are regenerated
from scratch during a reinstall. This makes CHECK_FILES more useful when
debugging packages with broken PLISTs.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.pkg.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index dbc1758b73d..ffe371aa9b2 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.1718 2005/08/26 14:47:30 xtraeme Exp $ +# $NetBSD: bsd.pkg.mk,v 1.1719 2005/09/16 06:09:02 jlam Exp $ # # This file is in the public domain. # @@ -2927,7 +2927,9 @@ real-su-deinstall: fi . endfor . endif # DEINSTALLDEPENDS - @${RM} -f ${_INSTALL_COOKIE} ${_PACKAGE_COOKIE} + @${RM} -f ${_INSTALL_COOKIE} ${_PACKAGE_COOKIE} \ + ${_CHECK_FILES_COOKIES} \ + ${_CHECK_FILES_PRE} ${_CHECK_FILES_POST} .endif # target(deinstall) |