diff options
author | joey <joey> | 2000-10-02 01:29:14 +0000 |
---|---|---|
committer | joey <joey> | 2000-10-02 01:29:14 +0000 |
commit | b2b388b4d237da2e6b72a2fef141a9535ecdc36a (patch) | |
tree | 565d3fc5c17b9d15e27eff01ff1a69ef54b67d62 /dh_makeshlibs | |
parent | a10ba9f809e534c3ee57cb3c99011f6f2bbb8e2b (diff) | |
download | debhelper-b2b388b4d237da2e6b72a2fef141a9535ecdc36a.tar.gz |
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
Diffstat (limited to 'dh_makeshlibs')
-rwxr-xr-x | dh_makeshlibs | 2 |
1 files changed, 1 insertions, 1 deletions
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*)\.?#; |