diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-03-05 15:12:37 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-03-05 15:12:37 +0000 |
commit | c365b7cd43d3b52791d445992be4fd8e0971efaf (patch) | |
tree | ba4da717b51cf908c328b59b97c69697089fe0c6 /perl-install/any.pm | |
parent | ddfbe698397c585f0471a09d88beb625a195fcd6 (diff) | |
download | drakx-c365b7cd43d3b52791d445992be4fd8e0971efaf.tar drakx-c365b7cd43d3b52791d445992be4fd8e0971efaf.tar.gz drakx-c365b7cd43d3b52791d445992be4fd8e0971efaf.tar.bz2 drakx-c365b7cd43d3b52791d445992be4fd8e0971efaf.tar.xz drakx-c365b7cd43d3b52791d445992be4fd8e0971efaf.zip |
(setupBootloader): fix call to get_append
Diffstat (limited to 'perl-install/any.pm')
-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 13b0377e8..7722fe910 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -141,7 +141,7 @@ sub setupBootloader { ); my $bootloader = arch() =~ /sparc/ ? __("SILO") : arch() =~ /ppc/ ? __("Yaboot") : __("LILO with graphical menu"); my $profiles = bootloader::has_profiles($b); - my $memsize = bootloader::get_append('mem'); + my $memsize = bootloader::get_append($b, 'mem'); $b->{vga} ||= 'Normal'; if (arch !~ /ppc/) { |