diff options
author | joey <joey> | 1999-08-17 05:02:18 +0000 |
---|---|---|
committer | joey <joey> | 1999-08-17 05:02:18 +0000 |
commit | 74bbde37b5769254f730525c22fb8a71d547a23d (patch) | |
tree | 7491a824cfa5cd92eff141828c9eacdb854e4e10 /dh_clean | |
parent | 2b197c28c63bdd7a316fdc3938be2e411c69fa33 (diff) | |
download | debhelper-74bbde37b5769254f730525c22fb8a71d547a23d.tar.gz |
r130: Initial Import
Diffstat (limited to 'dh_clean')
-rwxr-xr-x | dh_clean | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -30,8 +30,9 @@ if (! $dh{K_FLAG}) { # Remove other temp files. # (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 -name TAGS -o -name core -o ( -path */.deps/* -a -name *.P ) ) -exec rm -f {} ;")); |