summaryrefslogtreecommitdiffstats
path: root/perl-install/any.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r--perl-install/any.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm
index 271166848..f86e4fd11 100644
--- a/perl-install/any.pm
+++ b/perl-install/any.pm
@@ -530,7 +530,7 @@ sub writeandclean_ldsoconf {
my @suggest = ('/usr/X11R6/lib', '/usr/lib/qt3/lib'); #- needed for upgrade where package renaming can cause this to disappear
if (arch() =~ /x86_64/) {
- push @suggest, map { $_ . '64' } @suggest;
+ push @suggest, map { $_, $_ . '64' } @suggest;
}
push @l, grep { -d "$::prefix$_" } @suggest;
output($file, map { "$_\n" } uniq(@l));