summaryrefslogtreecommitdiff
path: root/dh_clean
diff options
context:
space:
mode:
authorjoeyh <joeyh>2007-10-07 13:28:36 +0000
committerjoeyh <joeyh>2007-10-07 13:28:36 +0000
commit17188701acec8c9222c5b5962d1f9aee0039e951 (patch)
tree7223a118e0181b9a9d4a9e83233b34ae045df9aa /dh_clean
parentd66f0f08bda3d1eade4cf82f16fe7b8e539a6995 (diff)
r2036: * dh_clean: append "/" to the temp dir name to avoid removing
a file with the same name. Closes: #445638
Diffstat (limited to 'dh_clean')
-rwxr-xr-xdh_clean2
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_clean b/dh_clean
index 18c298df..21114df8 100755
--- a/dh_clean
+++ b/dh_clean
@@ -70,7 +70,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
complex_doit("rm -f debian/$ext*.debhelper");
}
- doit ("rm","-rf",$tmp)
+ doit ("rm","-rf",$tmp."/")
unless excludefile($tmp);
}