]> git.donarmstrong.com Git - debhelper.git/commitdiff
r386: * dh_makeshlibs: Also scan files named "*.so*", not just "*.so.*",
authorjoey <joey>
Sun, 12 Nov 2000 01:26:42 +0000 (01:26 +0000)
committerjoey <joey>
Sun, 12 Nov 2000 01:26:42 +0000 (01:26 +0000)
     but only if they are files. This should make it more usable with
     rather stupidly broken libraries like db3, which do not encode the
     major version in their filenames. However, it cannot guess the major
     version of such libraries, so -m must be used.

debian/changelog
dh_makeshlibs

index 8113923ed5b2a9b4965f05a63bf414128bfeda25..0291a0a05d08f1506ff4ab7589d96db494ea18d1 100644 (file)
@@ -1,3 +1,13 @@
+debhelper (2.1.23) unstable; urgency=low
+
+  * dh_makeshlibs: Also scan files named "*.so*", not just "*.so.*",
+    but only if they are files. This should make it more usable with
+    rather stupidly broken libraries like db3, which do not encode the
+    major version in their filenames. However, it cannot guess the major
+    version of such libraries, so -m must be used.
+
+ -- Joey Hess <joeyh@debian.org>  Sat, 11 Nov 2000 17:24:58 -0800
+
 debhelper (2.1.22) unstable; urgency=low
 
   * Fixed dh_perl to work with perl 5.6, Closes: #76508
index 66781c7e6c3715efeeba1424f2179b5f30722444..1e48146cec98c969c3ab7bcddb26ca559f39b406 100755 (executable)
@@ -12,7 +12,7 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
 
        doit("rm", "-f", "$TMP/DEBIAN/shlibs");
 
-       open (FIND, "find $TMP -xtype f -name '*.so.*' |");
+       open (FIND, "find $TMP -xtype f -name '*.so*' |");
        while (<FIND>) {
                chomp;
                ($library, $major)=m#.*/(.*)\.so\.(\d*)\.?#;
@@ -34,7 +34,7 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
                                $deps="$PACKAGE (>= $dh{VERSION})";
                        }
                }
-               if (defined($library) && defined($major) && defined($deps) && 
+               if (defined($library) && defined($major) && defined($deps) &&
                    $library ne '' && $major ne '' && $deps ne '') {
                        # Prevent duplicate lines from entering the file.
                        my $line="$library $major $deps";