From: joey Date: Tue, 12 Nov 2002 22:58:50 +0000 (+0000) Subject: r561: * typo in dh_shlibdeps(1), Closes: #167421 X-Git-Tag: version_2.0.101~38 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=d4d4af4fcb3f1d7f23f92b1847f8191efbb594ea;p=debhelper.git r561: * typo in dh_shlibdeps(1), Closes: #167421 * dh_movefiles: make --list-missing respect --sourcedir. Closes: #168441 --- diff --git a/debian/changelog b/debian/changelog index 04f7240..b21744d 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 Sun, 10 Nov 2002 19:09:00 -0500 + -- Joey Hess Tue, 12 Nov 2002 17:56:32 -0500 debhelper (4.1.19) unstable; urgency=low diff --git a/dh_install b/dh_install index 9b03d46..33f24d0 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;