From 34cf65cea180a6a519c7a082ffa5929612d706aa Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Tue, 21 Jan 2025 17:40:30 +0100 Subject: [PATCH] mkosi-tools: Fix architecture condition We need to match the architecture of the tools tree we're building, not the host architecture. In practice these will always be the same so this doesn't actually change behavior. --- .../mkosi.conf.d/10-fedora/mkosi.conf.d/10-uefi.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mkosi/resources/mkosi-tools/mkosi.conf.d/10-fedora/mkosi.conf.d/10-uefi.conf b/mkosi/resources/mkosi-tools/mkosi.conf.d/10-fedora/mkosi.conf.d/10-uefi.conf index 4019e8125..776648639 100644 --- a/mkosi/resources/mkosi-tools/mkosi.conf.d/10-fedora/mkosi.conf.d/10-uefi.conf +++ b/mkosi/resources/mkosi-tools/mkosi.conf.d/10-fedora/mkosi.conf.d/10-uefi.conf @@ -1,8 +1,8 @@ # SPDX-License-Identifier: LGPL-2.1-or-later [Match] -HostArchitecture=|x86-64 -HostArchitecture=|arm64 +Architecture=|x86-64 +Architecture=|arm64 [Content] Packages= -- 2.47.3