From 981ebc92e547b9ec50988d5bed97bd217e8d1d60 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Mon, 29 Aug 2005 15:46:03 +0000 Subject: finish commit 1.387 --- perl-install/bootloader.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install') diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 40ff7af1e..e296bb46c 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -1130,7 +1130,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, qq(append="$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