diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-12-06 21:51:26 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-12-06 21:51:26 +0000 |
commit | 33512d7f58fab6184ea1dc21930f1d00c0e382c8 (patch) | |
tree | 373d54a6623e73fe709aa22170ba0b1f4fe0cbd5 /perl-install/install_steps.pm | |
parent | 6f09486fa6b42c0b3fedb48d4b8dd2e6ac52c647 (diff) | |
download | drakx-33512d7f58fab6184ea1dc21930f1d00c0e382c8.tar drakx-33512d7f58fab6184ea1dc21930f1d00c0e382c8.tar.gz drakx-33512d7f58fab6184ea1dc21930f1d00c0e382c8.tar.bz2 drakx-33512d7f58fab6184ea1dc21930f1d00c0e382c8.tar.xz drakx-33512d7f58fab6184ea1dc21930f1d00c0e382c8.zip |
adapt to the fact that RPM_INSTALL_LANG is obsoloted. Now rpm uses %_install_langs in /etc/rpm/macros
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 689a42d6d..01bcc89e1 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -98,7 +98,7 @@ sub selectLanguage { sub selectKeyboard { my ($o) = @_; keyboard::setup($o->{keyboard}); - lang::set_langs($o->{langs} || [ $o->{lang} ]); + $o->{langs} ||= lang::pack_langs([ $o->{lang} ]); } #------------------------------------------------------------------------------ sub selectPath {} |