diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-03-11 10:21:50 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-03-11 10:21:50 +0000 |
commit | 93771f2b43d02f366cd7febe8c27aa6c63fcb786 (patch) | |
tree | 1bd8a2a305f4f1f14dd379edac6423e00b72f85f /perl-install/bootloader.pm | |
parent | a1d4ee26dd2eff5c4db97ad729442a61be4930f9 (diff) | |
download | drakx-93771f2b43d02f366cd7febe8c27aa6c63fcb786.tar drakx-93771f2b43d02f366cd7febe8c27aa6c63fcb786.tar.gz drakx-93771f2b43d02f366cd7febe8c27aa6c63fcb786.tar.bz2 drakx-93771f2b43d02f366cd7febe8c27aa6c63fcb786.tar.xz drakx-93771f2b43d02f366cd7febe8c27aa6c63fcb786.zip |
fix Stew sucks
Diffstat (limited to 'perl-install/bootloader.pm')
-rw-r--r-- | perl-install/bootloader.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 947d25833..06f457dd4 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -538,7 +538,7 @@ sub install_yaboot($$$) { log::l("writing yaboot config to $f"); print F "#yaboot.conf - generated by DrakX"; - print F "init-message=\"\\n$lilo->{init-message}\\n\"" if $lilo->{init-message}; + print F "init-message=\"\\n$lilo->{'init-message'}\\n\"" if $lilo->{'init-message'}; if ($lilo->{boot}) { print F "boot=$lilo->{boot}"; |