]> git.donarmstrong.com Git - debhelper.git/commitdiff
r387: * I retract 2.1.23, the hack doesn't help make dpkg-shlibdeps work; db3
authorjoey <joey>
Sun, 12 Nov 2000 01:37:46 +0000 (01:37 +0000)
committerjoey <joey>
Sun, 12 Nov 2000 01:37:46 +0000 (01:37 +0000)
     is broken upstream.

debian/changelog
dh_makeshlibs

index 0291a0a05d08f1506ff4ab7589d96db494ea18d1..a90362e45721e03f8df300dcc4357c25e749a232 100644 (file)
@@ -1,3 +1,10 @@
+debhelper (2.1.24) unstable; urgency=low
+
+  * I retract 2.1.23, the hack doesn't help make dpkg-shlibdeps work; db3
+    is broken upstream.
+
+ -- Joey Hess <joeyh@debian.org>  Sat, 11 Nov 2000 17:35:34 -0800
+
 debhelper (2.1.23) unstable; urgency=low
 
   * dh_makeshlibs: Also scan files named "*.so*", not just "*.so.*",
index 1e48146cec98c969c3ab7bcddb26ca559f39b406..a9770717ee89b2b10178e0ed331bd35c91b6cc88 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*)\.?#;