]> git.donarmstrong.com Git - debhelper.git/commitdiff
dh_clean: Don't delete core dumps. (Too DWIM, and "core" is not necessarily a core...
authorJoey Hess <joey@kodama.kitenet.net>
Tue, 22 Apr 2008 21:54:47 +0000 (17:54 -0400)
committerJoey Hess <joey@kodama.kitenet.net>
Tue, 22 Apr 2008 21:54:47 +0000 (17:54 -0400)
debian/changelog
dh_clean

index b8f90c8a14749de58f39413f634d9e184403a112..0eb19ec39ce50af4c0b0a69f37f25286bd85c244 100644 (file)
@@ -1,3 +1,10 @@
+debhelper (6.0.13) UNRELEASED; urgency=low
+
+  * dh_clean: Don't delete core dumps. (Too DWIM, and "core" is not
+    necessarily a core dump.) Closes: #477391
+
+ -- Joey Hess <joeyh@debian.org>  Tue, 22 Apr 2008 17:54:20 -0400
+
 debhelper (6.0.12) unstable; urgency=low
 
   * dh_icons: Support .xpm format icons. Stop looking for .jpg icons, and
index 21114df895d29a2d68394bdaa913fd991b198e57..7f969240be99a6bbdb273065bd096c7e0ff7ea23 100755 (executable)
--- a/dh_clean
+++ b/dh_clean
@@ -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 core .deps/* *.P
+  #*# *~ DEADJOE *.orig *.rej *.SUMS TAGS .deps/* *.P
 
 =head1 OPTIONS
 
@@ -95,7 +95,7 @@ if (! $dh{D_FLAG}) {
                \\( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \\
                 -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \\
                 -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \\
-                -o -name TAGS -o -name core -o \\( -path '*/.deps/*' -a -name '*.P' \\) \\
+                -o -name TAGS -o \\( -path '*/.deps/*' -a -name '*.P' \\) \\
                \\) -exec rm -f {} \\; \\) -o \\
                \\( -type d -a -name autom4te.cache -prune -exec rm -rf {} \\; \\) \\)");
 }