summaryrefslogtreecommitdiffstats
path: root/perl-install/common.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/common.pm')
-rw-r--r--perl-install/common.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/common.pm b/perl-install/common.pm
index 265f7365c..72ae44d6e 100644
--- a/perl-install/common.pm
+++ b/perl-install/common.pm
@@ -735,7 +735,7 @@ Returns the short name of the UEFI machine type supported by the kernel stub loa
sub kernel_uefi_type() {
my $arch = arch();
if ($arch eq 'aarch64') {
- return 'aa64'
+ return 'aa64';
}
$arch =~ /i.86/ ? 'ia32' : 'x64';
}
@@ -748,7 +748,7 @@ Returns the UEFI machine type short name
sub uefi_type() {
if (arch() eq 'aarch64') {
- return 'aa64'
+ return 'aa64';
}
if (-e '/sys/firmware/efi/fw_platform_size') {
cat_('/sys/firmware/efi/fw_platform_size') =~ /32/ ? 'ia32' : 'x64';