]> git.donarmstrong.com Git - debhelper.git/commitdiff
r375: * Typo, Closes: #72932
authorjoey <joey>
Mon, 2 Oct 2000 01:29:14 +0000 (01:29 +0000)
committerjoey <joey>
Mon, 2 Oct 2000 01:29:14 +0000 (01:29 +0000)
   * dh_makeshlibs: follow symlinks to files when looking for files that are
     shared libraries. This allows it to catch files like
     "liballeg-3.9.33.so" that are not in the *.so.* form it looks for, but
     that doe have links to them that are in the right form. Closes: #72938

debhelper.1
debian/changelog
dh_makeshlibs

index d52c82a4544483ece823efe0267b978153dfcab5..91aabb4cf434be1261f35827ba540680ca18659d 100644 (file)
@@ -50,7 +50,7 @@ In some rare cases, you may want to have different versions of these files
 for different architectures. If files named debian/<package>.foo.<arch>
 exist, where <arch> is the same as the output of "dpkg --print-architecture",
 then they will be used in preference to other, more general files.
-.SH "SHARED DEBHLPER OPTIONS"
+.SH "SHARED DEBHELPER OPTIONS"
 The following command line options are supported by all debhelper programs.
 .TP
 .B \-v, \--verbose
index 608beb668a53ef2fa572adf15d36f6e65ac48a17..6ae0b669bf9619d0c197d5b30823dbbd5c1f40b4 100644 (file)
@@ -1,3 +1,13 @@
+debhelper (2.1.13) unstable; urgency=low
+
+  * Typo, Closes: #72932
+  * dh_makeshlibs: follow symlinks to files when looking for files that are
+    shared libraries. This allows it to catch files like
+    "liballeg-3.9.33.so" that are not in the *.so.* form it looks for, but
+    that doe have links to them that are in the right form. Closes: #72938
+
+ -- Joey Hess <joeyh@debian.org>  Sun,  1 Oct 2000 18:23:48 -0700
+
 debhelper (2.1.12) unstable; urgency=low
 
   * Rebuild to remove cvs junk, Closes: #72610
index b37260f0208e9bd78225b2337c60e6c1f2eeafb3..bfded282885620b883892547d8042446078fb357 100755 (executable)
@@ -10,7 +10,7 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
 
        doit("rm", "-f", "$TMP/DEBIAN/shlibs");
 
-       open (FIND, "find $TMP -type f -name '*.so.*' |");
+       open (FIND, "find $TMP -xtype f -name '*.so.*' |");
        while (<FIND>) {
                chomp;
                ($library, $major)=m#.*/(.*)\.so\.(\d*)\.?#;