summaryrefslogtreecommitdiffstats
path: root/perl-install/commands
Commit message (Expand)AuthorAgeFilesLines
* move to MDK::Common, bool->to_boolPascal Rigaux2001-07-251-1/+1
* no_commentPascal Rigaux1999-10-101-1/+1
* *** empty log message ***Pascal Rigaux1999-07-011-1/+1
* "See_The_Changelog"Chmouel Boudjnah1999-07-011-0/+15
ref='/software/drakx-backup-do-not-use/snapshot/drakx-backup-do-not-use-94b751dceda283748dd4b2327a890b917b8be217.tar'>drakx-backup-do-not-use-94b751dceda283748dd4b2327a890b917b8be217.tar
drakx-backup-do-not-use-94b751dceda283748dd4b2327a890b917b8be217.tar.gz
drakx-backup-do-not-use-94b751dceda283748dd4b2327a890b917b8be217.tar.bz2
drakx-backup-do-not-use-94b751dceda283748dd4b2327a890b917b8be217.tar.xz
drakx-backup-do-not-use-94b751dceda283748dd4b2327a890b917b8be217.zip
fix ugly typo (especially causing acpi to not be set in drakboot --boot)
Diffstat
-rw-r--r--perl-install/bootloader.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm
index 64d1d2e25..6b34749e5 100644
--- a/perl-install/bootloader.pm
+++ b/perl-install/bootloader.pm
@@ -563,7 +563,7 @@ sub set_append_with_key {
my ($_simple, $dict) = @_;
if ($val eq '') {
- @$dict = grep { $_ ne $key } @$dict;
+ @$dict = grep { $_->[0] ne $key } @$dict;
} else {
push @$dict, [ $key, $val ];
}