diff options
author | jlam <jlam> | 2005-09-16 06:09:02 +0000 |
---|---|---|
committer | jlam <jlam> | 2005-09-16 06:09:02 +0000 |
commit | a6fb6817ec73e9199b3483062ae4b76398808e40 (patch) | |
tree | 3427b4f68d6cfe1a308847c3795de1122015ba2f /mk | |
parent | 15db949e2189d787fc7cf1c8a0f6076171da261e (diff) | |
download | pkgsrc-a6fb6817ec73e9199b3483062ae4b76398808e40.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) |