Просмотр исходного кода

Add '/lib32' and '/usr/lib32' to the dpkg-shlibdeps library path search
list. Closes: #367892

Guillem Jover лет назад: 20
Родитель
Сommit
11fb3eaf60
3 измененных файлов с 8 добавлено и 1 удалено
  1. 5 0
      ChangeLog
  2. 2 0
      debian/changelog
  3. 1 1
      scripts/dpkg-shlibdeps.pl

+ 5 - 0
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.

+ 2 - 0
debian/changelog

@@ -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
 

+ 1 - 1
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}) {