]> git.donarmstrong.com Git - debhelper.git/commitdiff
r561: * typo in dh_shlibdeps(1), Closes: #167421
authorjoey <joey>
Tue, 12 Nov 2002 22:58:50 +0000 (22:58 +0000)
committerjoey <joey>
Tue, 12 Nov 2002 22:58:50 +0000 (22:58 +0000)
   * dh_movefiles: make --list-missing respect --sourcedir. Closes: #168441

debian/changelog
dh_install

index 04f724053b72934100231c571daefc343f739aba..b21744d8fae3d8bf36ff6a779eb7d1ffe07ed8ea 100644 (file)
@@ -3,7 +3,7 @@ debhelper (4.1.20) unstable; urgency=low
   * typo in dh_shlibdeps(1), Closes: #167421
   * dh_movefiles: make --list-missing respect --sourcedir. Closes: #168441
 
- -- Joey Hess <joeyh@debian.org>  Sun, 10 Nov 2002 19:09:00 -0500
+ -- Joey Hess <joeyh@debian.org>  Tue, 12 Nov 2002 17:56:32 -0500
 
 debhelper (4.1.19) unstable; urgency=low
 
index 9b03d46a1094e89029d6f892f77f22fef7a8e629..33f24d0635598f7d47d1abcd514aa0689f56e675 100755 (executable)
@@ -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;