From 2e46adeaf92024601a2c316cfa71f0e86b11485a Mon Sep 17 00:00:00 2001 From: joey Date: Tue, 17 Aug 1999 05:10:12 +0000 Subject: [PATCH] r174: Initial Import --- debian/changelog | 6 ++++++ dh_clean | 9 +++++---- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/debian/changelog b/debian/changelog index a31d524..49eab4c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +debhelper (1.2.38) unstable; urgency=low + + * dh_clean: don't try to delete directories named "core". + + -- Joey Hess Sat, 20 Feb 1999 19:13:40 -0800 + debhelper (1.2.37) unstable; urgency=low * dh_installdocs: Patch from Jim Pick , fixes regexp error (Closes: #33431). diff --git a/dh_clean b/dh_clean index c883a62..9ffb743 100755 --- a/dh_clean +++ b/dh_clean @@ -35,9 +35,10 @@ if (! $dh{D_FLAG}) { # (The \s+ is important, \s won't work because find would get null # parameters). Note that you _don't_ quote wildcards used by find # in here. - doit(split(/\s+/,"find . ( -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 ) + doit(split(/\s+/,"find . -type f -a + ( -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 ) ) -exec rm -f {} ;")); } -- 2.39.5