]> err.no Git - dpkg/commitdiff
Add '/lib32' and '/usr/lib32' to the dpkg-shlibdeps library path search
authorGuillem Jover <guillem@debian.org>
Fri, 2 Jun 2006 03:52:05 +0000 (03:52 +0000)
committerGuillem Jover <guillem@debian.org>
Fri, 2 Jun 2006 03:52:05 +0000 (03:52 +0000)
list. Closes: #367892

ChangeLog
debian/changelog
scripts/dpkg-shlibdeps.pl

index 6b57dab95bc46b2ec60f31b860ababb69b90aa89..cf39c4d8f3ff028810e433db6c998e5b7eaf5b41 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-06-02  Guillem Jover  <guillem@debian.org>
+
+       * scripts/dpkg-shlibdeps.pl (@librarypaths): Add '/lib32' and
+       '/usr/lib32/'.
+
 2006-06-02  Guillem Jover  <guillem@debian.org>
 
        * src/query.c (setaction): Print also the short command line action.
index a2b8745323a9917cfabce7f89af516365644fc5e..4c4dc3d0897d10685fed67515b4da7ac10140c43 100644 (file)
@@ -4,6 +4,8 @@ dpkg (1.13.21~) UNRELEASED; urgency=low
   * Disambiguate error message about conflicting command line actions by
     providing both long and short option names. Based on a suggestion by
     Josip Rodin. Closes: #45575
+  * Add '/lib32' and '/usr/lib32' to the dpkg-shlibdeps library path search
+    list. Closes: #367892
 
  -- Guillem Jover <guillem@debian.org>  Wed, 31 May 2006 08:03:11 +0300
 
index 3126b81966aaf5a542ff2ea75338fd065c6cd451..8ae77db4f300e9f7934b2a2edcd3b39cb917e02e 100755 (executable)
@@ -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}) {