From 67a9b7bd8043f21af7ae96b22d4a95d3027ffb11 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 30 Aug 2005 11:30:05 +0000 Subject: fix ugly typo --- perl-install/bootloader.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index a2453cf90..b074aeb0f 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -1136,7 +1136,7 @@ sub write_lilo { if ($entry->{type} eq "image") { push @entry_conf, 'root=' . $quotes_if_needed->($entry->{root}) if $entry->{root}; push @entry_conf, "initrd=" . $file2fullname->($entry->{initrd}) if $entry->{initrd}; - push @entry_conf, "append=", $quotes->($entry->{append}) if $entry->{append}; + push @entry_conf, "append=" . $quotes->($entry->{append}) if $entry->{append}; push @entry_conf, "vga=$entry->{vga}" if $entry->{vga}; push @entry_conf, grep { $entry->{$_} } qw(read-write read-only optional); } else { -- cgit v1.2.1