summaryrefslogtreecommitdiff
path: root/scripts/Dpkg
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2015-05-15 17:05:04 +0200
committerGuillem Jover <guillem@debian.org>2015-05-18 06:25:12 +0200
commit37b7e396bef84e73b9290c1e746e867bf7009850 (patch)
tree0d2348829b5e7dd99ac4c71d647947515a0715ca /scripts/Dpkg
parent93da43460d292198c02c5f0a8b0bf4929c0dd915 (diff)
downloaddpkg-37b7e396bef84e73b9290c1e746e867bf7009850.tar.gz
Dpkg::Shlibs: Remove ancient multilib paths
The /emul/ia32-linux/lib and /emul/ia32-linux/usr/lib paths, inherited from ia64, have long been unused, since Debian squeeze. It's about time to get rid of them.
Diffstat (limited to 'scripts/Dpkg')
-rw-r--r--scripts/Dpkg/Shlibs.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/Dpkg/Shlibs.pm b/scripts/Dpkg/Shlibs.pm
index 1dc64abee..c769b2267 100644
--- a/scripts/Dpkg/Shlibs.pm
+++ b/scripts/Dpkg/Shlibs.pm
@@ -43,8 +43,7 @@ use constant DEFAULT_LIBRARY_PATH =>
qw(/lib /usr/lib);
# XXX: Deprecated multilib paths.
use constant DEFAULT_MULTILIB_PATH =>
- qw(/lib32 /usr/lib32 /lib64 /usr/lib64
- /emul/ia32-linux/lib /emul/ia32-linux/usr/lib);
+ qw(/lib32 /usr/lib32 /lib64 /usr/lib64);
my @librarypaths;
my $librarypaths_init;