diff options
author | Joey Hess <joey@kitenet.net> | 2013-05-05 14:53:51 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-05-05 14:53:51 -0400 |
commit | c53f767afa63a7e516ea86c291ff31570de0922a (patch) | |
tree | 7d26e4a61981368e3017a45e8391a9f4a6723c1c | |
parent | 7c2b2a5ef9c200c4d8cd77f4a797456aa7103ca9 (diff) | |
download | debhelper-c53f767afa63a7e516ea86c291ff31570de0922a.tar.gz |
bugfix
-rwxr-xr-x | dh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"; |