From 6269641f0146553a744ff0ff1d4a45662c466d6b Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Thu, 5 Feb 2004 13:56:39 +0000 Subject: fix ugly typo (occuring when removing "clean /tmp", ie not often, especially since drakboot didn't write fstab) --- perl-install/any.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install/any.pm') diff --git a/perl-install/any.pm b/perl-install/any.pm index 332779a7d..647d698a1 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -271,7 +271,7 @@ sub setupBootloader__general { if ($clean_tmp && !fsedit::has_mntpoint('/tmp', $all_hds)) { push @{$all_hds->{special}}, { device => 'none', mntpoint => '/tmp', type => 'tmpfs' }; } else { - @{$all_hds->{special}} = grep { $_->{mntpoint} eq '/tmp' } @{$all_hds->{special}}; + @{$all_hds->{special}} = grep { $_->{mntpoint} ne '/tmp' } @{$all_hds->{special}}; } } 1; -- cgit v1.2.1