diff options
author | joey <joey> | 2002-11-12 22:58:50 +0000 |
---|---|---|
committer | joey <joey> | 2002-11-12 22:58:50 +0000 |
commit | d4d4af4fcb3f1d7f23f92b1847f8191efbb594ea (patch) | |
tree | 9a176a18463f79486012c1994f1d0aff0017d485 | |
parent | 7f71481a6aeb182fdd37769c22de19ef7fed9cb7 (diff) | |
download | debhelper-d4d4af4fcb3f1d7f23f92b1847f8191efbb594ea.tar.gz |
r561: * typo in dh_shlibdeps(1), Closes: #167421
* dh_movefiles: make --list-missing respect --sourcedir. Closes: #168441
-rw-r--r-- | debian/changelog | 2 | ||||
-rwxr-xr-x | dh_install | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 04f72405..b21744d8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 @@ -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; |