diff options
author | Guillem Jover <guillem@debian.org> | 2006-06-02 03:52:05 +0000 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2006-06-02 03:52:05 +0000 |
commit | 11fb3eaf6085bb508bfdb265e5b309fb314e5d55 (patch) | |
tree | a5dabccd3bf21bc1bfe4172c9cd26b1707f743fb /scripts | |
parent | ad13d218499a7224fc8b5904014aac17da757a09 (diff) | |
download | dpkg-11fb3eaf6085bb508bfdb265e5b309fb314e5d55.tar.gz |
Add '/lib32' and '/usr/lib32' to the dpkg-shlibdeps library path search
list. Closes: #367892
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/dpkg-shlibdeps.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/dpkg-shlibdeps.pl b/scripts/dpkg-shlibdeps.pl index 3126b8196..8ae77db4f 100755 --- a/scripts/dpkg-shlibdeps.pl +++ b/scripts/dpkg-shlibdeps.pl @@ -121,7 +121,7 @@ sub isbin { } } -my @librarypaths = qw( /lib /usr/lib /lib64 /usr/lib64 ); +my @librarypaths = qw( /lib /usr/lib /lib32 /usr/lib32 /lib64 /usr/lib64 ); my %librarypaths = map { $_ => 'default' } @librarypaths; if ($ENV{LD_LIBRARY_PATH}) { |