diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-04-23 23:12:49 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-04-23 23:12:49 -0400 |
commit | 57834b0010aa942681c289e01ffc09030ed17ce2 (patch) | |
tree | bdb2e2fd1c4229bbb1fb898cda7eb971bd183a06 /dh_clean | |
parent | 78425c5f80b3244439b3a9da130eb3602aa2dba2 (diff) | |
download | debhelper-57834b0010aa942681c289e01ffc09030ed17ce2.tar.gz |
dh_clean: In v7 mode, automatically delete *-stamp files.
Diffstat (limited to 'dh_clean')
-rwxr-xr-x | dh_clean | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -20,7 +20,7 @@ package is built. It removes the package build directories, and removes some other files including debian/files, and any detritus left behind by other debhelper commands. It also removes common files that should not appear in a debian diff: - #*# *~ DEADJOE *.orig *.rej *.SUMS TAGS .deps/* *.P + #*# *~ DEADJOE *.orig *.rej *.SUMS TAGS .deps/* *.P *-stamp It does not run "make clean" to clean up after the build process. Use L<dh_auto_clean(1)> to do that. @@ -119,6 +119,10 @@ if (! $dh{D_FLAG}) { doit('rm', '-rf', 'debian/tmp') if -x 'debian/tmp' && ! compat(1) && ! excludefile("debian/tmp"); +if (!compat(6)) { + complex_doit('rm -f *-stamp'); +} + =head1 SEE ALSO L<debhelper(7)> |