summaryrefslogtreecommitdiff
path: root/dh_makeshlibs
diff options
context:
space:
mode:
authorjoey <joey>2000-10-02 01:29:14 +0000
committerjoey <joey>2000-10-02 01:29:14 +0000
commitb2b388b4d237da2e6b72a2fef141a9535ecdc36a (patch)
tree565d3fc5c17b9d15e27eff01ff1a69ef54b67d62 /dh_makeshlibs
parenta10ba9f809e534c3ee57cb3c99011f6f2bbb8e2b (diff)
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-xdh_makeshlibs2
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*)\.?#;