]> git.donarmstrong.com Git - debhelper.git/commitdiff
r1582: * dh_makeshlibs: only scan files matching *.so.* and *.so, not *.so*. version_4.1.61
authorjoey <joey>
Fri, 8 Aug 2003 23:13:18 +0000 (23:13 +0000)
committerjoey <joey>
Fri, 8 Aug 2003 23:13:18 +0000 (23:13 +0000)
Closes: #204559
debian/changelog
dh_makeshlibs

index 2898f71b2f60a1b25bfdbeccda2c67410e1b603f..a9f3786e9274c50c8ba077b8d01fab37a70eca86 100644 (file)
@@ -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 <joeyh@debian.org>  Fri,  8 Aug 2003 17:08:00 -0400
+
 debhelper (4.1.60) unstable; urgency=low
 
   * dh_python: support python ver 2.3. Closes: #204556
index de9f782796f6511440f7544f90225d3e48a07ee6..ba5266b8204f02f6ac19fa66584b73315ea25e39 100755 (executable)
@@ -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 (<FIND>) {
                my ($library, $major);
                my $objdump=`objdump -p $_`;