summaryrefslogtreecommitdiffstats
path: root/perl-install/bootloader.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/bootloader.pm')
-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 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 {