diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/bootloader.pm | 2 | ||||
-rw-r--r-- | perl-install/install/NEWS | 2 |
3 files changed, 5 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 209285c49..8033095ed 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,5 +1,7 @@ - drakboot: o better read back config + o fix undefined labels when eg: Xen is installed (mga#19014) + drakboot crashed with "undefined value for mandatory argument 'text'' Version 17.88 - 7 July 2017 diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index cf3dfbc18..1e629345e 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -329,7 +329,7 @@ sub read_grub2() { $entry->{initrd} = $1; } elsif (/^submenu\s+['"]([^']+)["']/) { push @menus, $1; - } elsif (/}/) { + } elsif (/^\s+}/) { if ($entry) { push @{$bootloader{entries}}, $entry; undef $entry; diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 4c130f5be..b14376a3d 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,5 +1,7 @@ - bootloader: o better read back config + o fix undefined labels when eg: Xen is installed (mga#19014) + crash with "undefined value for mandatory argument 'text'' Version 17.89 - 7 September 2017 |