From 8406a1dbd219c99c3039d66c158fb842a2fb0833 Mon Sep 17 00:00:00 2001 From: joey Date: Fri, 8 Aug 2003 23:13:18 +0000 Subject: [PATCH] r1582: * dh_makeshlibs: only scan files matching *.so.* and *.so, not *.so*. Closes: #204559 --- debian/changelog | 7 +++++++ dh_makeshlibs | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) 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 $_`; -- 2.39.2