diff options
author | joey <joey> | 2001-05-30 20:24:46 +0000 |
---|---|---|
committer | joey <joey> | 2001-05-30 20:24:46 +0000 |
commit | 5e4b47dc3e23c862f7af2428fcade51acbfb9b69 (patch) | |
tree | c13b2aa626eadbb736833a3e81775dee354c04cc /dh_clean | |
parent | a524668098e5215a64ac4cc466b3de6590d13cfe (diff) | |
download | debhelper-5e4b47dc3e23c862f7af2428fcade51acbfb9b69.tar.gz |
r473: * dh_clean: clean up temp files used by earlier versons of debhelper.
Closes: #99169
Diffstat (limited to 'dh_clean')
-rwxr-xr-x | dh_clean | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -81,6 +81,15 @@ if (! $dh{D_FLAG}) { doit("rm","-f","debian/files"); } + # Remove some files that were left around by older versions of + # debhelper, just in case someone upgrades in the middle of a + # build. + doit("rm","-f","debian/substvars", + "debian/postinst.debhelper", + "debian/postrm.debhelper", + "debian/preinst.debhelper", + "debian/prerm.debhelper"); + # See if some files that would normally be deleted are excluded. my $find_options=''; if (defined($dh{EXCLUDE_FIND}) && $dh{EXCLUDE_FIND} ne '') { |