]> git.donarmstrong.com Git - debhelper.git/blobdiff - dh_makeshlibs
r388: * Ok, I tihnk we have a db3 fix that will really work now.
[debhelper.git] / dh_makeshlibs
index 1e48146cec98c969c3ab7bcddb26ca559f39b406..6c708e8676c0ae936d4208623d91d17f152938a2 100755 (executable)
@@ -12,10 +12,15 @@ 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*)\.?#;
+               # The second evil regexp is for db3, whose author should
+               # be shot.
+               if (m#.*/(.*)\.so\.(\d*)\.?# || m#.*/(.*)-(\S+)\.so$#) {
+                       $library = $1;
+                       $major = $2;
+               }
                if (defined($dh{M_PARAMS}) && $dh{M_PARAMS} ne '') {
                        $major=$dh{M_PARAMS};
                }