From: joey Date: Mon, 2 Oct 2000 01:29:14 +0000 (+0000) Subject: r375: * Typo, Closes: #72932 X-Git-Tag: version_2.0.101~224 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=b2b388b4d237da2e6b72a2fef141a9535ecdc36a;p=debhelper.git r375: * 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 --- diff --git a/debhelper.1 b/debhelper.1 index d52c82a..91aabb4 100644 --- a/debhelper.1 +++ b/debhelper.1 @@ -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/.foo. exist, where 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 diff --git a/debian/changelog b/debian/changelog index 608beb6..6ae0b66 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Sun, 1 Oct 2000 18:23:48 -0700 + debhelper (2.1.12) unstable; urgency=low * Rebuild to remove cvs junk, Closes: #72610 diff --git a/dh_makeshlibs b/dh_makeshlibs index b37260f..bfded28 100755 --- a/dh_makeshlibs +++ b/dh_makeshlibs @@ -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 () { chomp; ($library, $major)=m#.*/(.*)\.so\.(\d*)\.?#;