summaryrefslogtreecommitdiff
path: root/dh_install
diff options
context:
space:
mode:
authorjoey <joey>2002-11-12 22:58:50 +0000
committerjoey <joey>2002-11-12 22:58:50 +0000
commitd4d4af4fcb3f1d7f23f92b1847f8191efbb594ea (patch)
tree9a176a18463f79486012c1994f1d0aff0017d485 /dh_install
parent7f71481a6aeb182fdd37769c22de19ef7fed9cb7 (diff)
r561: * typo in dh_shlibdeps(1), Closes: #167421
* dh_movefiles: make --list-missing respect --sourcedir. Closes: #168441
Diffstat (limited to 'dh_install')
-rwxr-xr-xdh_install2
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_install b/dh_install
index 9b03d46a..33f24d06 100755
--- a/dh_install
+++ b/dh_install
@@ -179,7 +179,7 @@ if ($dh{LIST_MISSING}) {
find(sub {
-f || -l || return;
$_="$File::Find::dir/$_";
- push @missing, $_ unless /$installed/;
+ push @missing, $_ unless /$installed/ || excludefile($_);
}, $srcdir);
if (@missing) {
warning "$_ not installed" foreach @missing;