summaryrefslogtreecommitdiff
path: root/dh
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2013-05-05 14:53:51 -0400
committerJoey Hess <joey@kitenet.net>2013-05-05 14:53:51 -0400
commitc53f767afa63a7e516ea86c291ff31570de0922a (patch)
tree7d26e4a61981368e3017a45e8391a9f4a6723c1c /dh
parent7c2b2a5ef9c200c4d8cd77f4a797456aa7103ca9 (diff)
bugfix
Diffstat (limited to 'dh')
-rwxr-xr-xdh2
1 files changed, 1 insertions, 1 deletions
diff --git a/dh b/dh
index 18a357cf..9e5e5e24 100755
--- a/dh
+++ b/dh
@@ -923,7 +923,7 @@ sub can_skip {
foreach my $package (@packages) {
foreach my $skipinfo (@skipinfo) {
- if ($skipinfo=~/^tmp(.*)$/) {
+ if ($skipinfo=~/^tmp\((.*)\)$/) {
my $need=$1;
my $tmp=tmpdir($package);
return 0 if -e "$tmp/$need";