diff options
-rw-r--r-- | debhelper.1 | 2 | ||||
-rw-r--r-- | debian/changelog | 10 | ||||
-rwxr-xr-x | dh_makeshlibs | 2 |
3 files changed, 12 insertions, 2 deletions
diff --git a/debhelper.1 b/debhelper.1 index d52c82a4..91aabb4c 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/<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 diff --git a/debian/changelog b/debian/changelog index 608beb66..6ae0b669 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 <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 diff --git a/dh_makeshlibs b/dh_makeshlibs index b37260f0..bfded282 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 (<FIND>) { chomp; ($library, $major)=m#.*/(.*)\.so\.(\d*)\.?#; |