From: joey Date: Fri, 8 Aug 2003 23:13:18 +0000 (+0000) Subject: r1582: * dh_makeshlibs: only scan files matching *.so.* and *.so, not *.so*. X-Git-Tag: version_4.1.61^0 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=8406a1dbd219c99c3039d66c158fb842a2fb0833;p=debhelper.git r1582: * dh_makeshlibs: only scan files matching *.so.* and *.so, not *.so*. Closes: #204559 --- diff --git a/debian/changelog b/debian/changelog index 2898f71..a9f3786 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +debhelper (4.1.61) unstable; urgency=low + + * dh_makeshlibs: only scan files matching *.so.* and *.so, not *.so*. + Closes: #204559 + + -- Joey Hess Fri, 8 Aug 2003 17:08:00 -0400 + debhelper (4.1.60) unstable; urgency=low * dh_python: support python ver 2.3. Closes: #204556 diff --git a/dh_makeshlibs b/dh_makeshlibs index de9f782..ba5266b 100755 --- a/dh_makeshlibs +++ b/dh_makeshlibs @@ -104,7 +104,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { if (defined($dh{EXCLUDE_FIND}) && $dh{EXCLUDE_FIND} ne '') { $exclude="! \\( $dh{EXCLUDE_FIND} \\) "; } - open (FIND, "find $tmp -type f -name '*.so*' $exclude |"); + open (FIND, "find $tmp -type f \\( -name '*.so' -or -name '*.so.*' \\) $exclude |"); while () { my ($library, $major); my $objdump=`objdump -p $_`;