Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ override EFI_ESP_ROOT=/boot/efi
endif
EFI_ARCHES ?= $(call get-config,arches)
ifeq ($(EFI_ARCHES),)
override EFI_ARCHES="x86_64 aarch64 %{arm} %{ix86}"
override EFI_ARCHES="%{x86_64} aarch64 %{arm} %{ix86}"
endif
EFI_VENDOR ?= $(call get-config,vendor)

Expand Down
2 changes: 1 addition & 1 deletion efi-rpm-macros.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ machine bootloaders and tools.
%autosetup -S git_am -n %{name}-@@EFI_SOURCE_VERSION@@
git config --local --add efi.vendor "%{_efi_vendor_}"
git config --local --add efi.esp-root /boot/efi
git config --local --add efi.arches "x86_64 aarch64 %{arm} %{ix86}"
git config --local --add efi.arches "%{x86_64} aarch64 %{arm} %{ix86}"

%build
%make_build clean all
Expand Down
2 changes: 1 addition & 1 deletion macros.efi-srpm.in
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
local function getarch()
if arch("ia64") then
return("ia64")
elseif arch("x86_64") then
elseif arch("%{x86_64}") then
return("x64")
elseif arch("%{ix86}") then
return("ia32")
Expand Down