summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-06-06 04:35:16 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-06-06 04:35:16 +0000
commitf49d1995e8d402461242500a50ae724ffb9ab176 (patch)
tree85b1d68cc42ac8f4d453dc49525bd75434a479f4 /perl-install/install_steps.pm
parent7a8650bf7aa5ddf751bbc32ded553a84bfde2186 (diff)
downloaddrakx-f49d1995e8d402461242500a50ae724ffb9ab176.tar
drakx-f49d1995e8d402461242500a50ae724ffb9ab176.tar.gz
drakx-f49d1995e8d402461242500a50ae724ffb9ab176.tar.bz2
drakx-f49d1995e8d402461242500a50ae724ffb9ab176.tar.xz
drakx-f49d1995e8d402461242500a50ae724ffb9ab176.zip
use bootloader->{message_text} instead of bootloader->{message}
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r--perl-install/install_steps.pm6
1 files changed, 6 insertions, 0 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index 4f345bd63..a3a212689 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -782,6 +782,12 @@ sub setupBootloaderBefore {
require bootloader;
+ #- auto_install backward compatibility
+ #- one should now use {message_text}
+ if ($o->{bootloader}{message} =~ m!^[^/]!) {
+ $o->{bootloader}{message_text} = delete $o->{bootloader}{message};
+ }
+
#- remove previous ide-scsi lines
bootloader::modify_append($o->{bootloader}, sub {
my ($_simple, $dict) = @_;