summaryrefslogtreecommitdiffstats
path: root/perl-install/any.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-12-18 00:30:45 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-12-18 00:30:45 +0000
commitde6f26ee0018894d7feb48bee44d3e2c02059b0d (patch)
treee1e7036c1ee4d08a224c4e46ff29037b1c8cadef /perl-install/any.pm
parentc03c897d3bd5dfc6df83b2aea33768c3cbb2b4e6 (diff)
downloaddrakx-de6f26ee0018894d7feb48bee44d3e2c02059b0d.tar
drakx-de6f26ee0018894d7feb48bee44d3e2c02059b0d.tar.gz
drakx-de6f26ee0018894d7feb48bee44d3e2c02059b0d.tar.bz2
drakx-de6f26ee0018894d7feb48bee44d3e2c02059b0d.tar.xz
drakx-de6f26ee0018894d7feb48bee44d3e2c02059b0d.zip
fix typos
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r--perl-install/any.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm
index 6c6135c7a..a34d6e8fc 100644
--- a/perl-install/any.pm
+++ b/perl-install/any.pm
@@ -147,7 +147,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($b, 'mem');
- my $prev_clean_tmp = my $clean_tmp = grep { $_->{mntpoint} eq '/tmp' } @{$hds->{special}};
+ my $prev_clean_tmp = my $clean_tmp = grep { $_->{mntpoint} eq '/tmp' } @{$all_hds->{special} ||= []};
$b->{vga} ||= 'Normal';
if (arch !~ /ppc/) {
@@ -208,9 +208,9 @@ sub setupBootloader {
if ($prev_clean_tmp != $clean_tmp) {
if ($clean_tmp) {
- push @{$hds->{special}}, { device => 'none', mntpoint => '/tmp', type => 'tmpfs' };
+ push @{$all_hds->{special}}, { device => 'none', mntpoint => '/tmp', type => 'tmpfs' };
} else {
- @{$hds->{special}} = grep { $_->{mntpoint} eq '/tmp' } @{$hds->{special}};
+ @{$all_hds->{special}} = grep { $_->{mntpoint} eq '/tmp' } @{$all_hds->{special}};
}
}
}