diff options
author | Thierry Vignaud <tv@mageia.org> | 2013-04-04 13:59:16 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2013-04-04 13:59:16 +0000 |
commit | 61d3f25bd867bcf00955cee70bd09f460165cd97 (patch) | |
tree | 69ebc16a3bebc9b690236a137d5755dc0dd0b7bf /perl-install | |
parent | 22dda04fa1d86f107a6951a766238253c099518e (diff) | |
download | drakx-61d3f25bd867bcf00955cee70bd09f460165cd97.tar drakx-61d3f25bd867bcf00955cee70bd09f460165cd97.tar.gz drakx-61d3f25bd867bcf00955cee70bd09f460165cd97.tar.bz2 drakx-61d3f25bd867bcf00955cee70bd09f460165cd97.tar.xz drakx-61d3f25bd867bcf00955cee70bd09f460165cd97.zip |
simplify
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/bootloader-config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/bootloader-config b/perl-install/standalone/bootloader-config index 855a297f9..b68cef028 100755 --- a/perl-install/standalone/bootloader-config +++ b/perl-install/standalone/bootloader-config @@ -149,7 +149,7 @@ sub add_kernel() { my $fake_bootloader = { vga => undef }; my %opts = (initrd_options => $initrd_options); my $initrd_long = bootloader::kernel_str2initrd_long($kernel_str); - bootloader::mkinitrd($kernel_str->{version}, $fake_bootloader, { %opts }, "/boot/$initrd_long"); + bootloader::mkinitrd($kernel_str->{version}, $fake_bootloader, \%opts, "/boot/$initrd_long"); return; } |