diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-11-25 13:40:35 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-11-25 13:40:35 +0000 |
commit | 025275149a220c10f4768ff53be5ea78f512d087 (patch) | |
tree | c19ffc9e19e483686e8b309f0c0c40dc10cc8ab4 /perl-install | |
parent | c2c9b3fe99b171ac4c42cd57284d3017e3ce27e5 (diff) | |
download | drakx-025275149a220c10f4768ff53be5ea78f512d087.tar drakx-025275149a220c10f4768ff53be5ea78f512d087.tar.gz drakx-025275149a220c10f4768ff53be5ea78f512d087.tar.bz2 drakx-025275149a220c10f4768ff53be5ea78f512d087.tar.xz drakx-025275149a220c10f4768ff53be5ea78f512d087.zip |
fix previous commit
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/any.pm | 2 |
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)); |