diff mbox series

[isar-cip-core] edk2-standalonemm-rpmb: Fix unbalanced brackets

Message ID 850bec4a-0606-4839-9412-191947697703@siemens.com (mailing list archive)
State Accepted
Headers show
Series [isar-cip-core] edk2-standalonemm-rpmb: Fix unbalanced brackets | expand

Commit Message

Jan Kiszka Oct. 12, 2023, 11:22 a.m. UTC
From: Jan Kiszka <jan.kiszka@siemens.com>

Was not recognized when using only arm64.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---
 recipes-bsp/edk2/edk2-standalonemm-rpmb/rules | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
diff mbox series

Patch

diff --git a/recipes-bsp/edk2/edk2-standalonemm-rpmb/rules b/recipes-bsp/edk2/edk2-standalonemm-rpmb/rules
index 4161e6ca..8d2c1dfc 100755
--- a/recipes-bsp/edk2/edk2-standalonemm-rpmb/rules
+++ b/recipes-bsp/edk2/edk2-standalonemm-rpmb/rules
@@ -18,11 +18,11 @@  export ACTIVE_PLATFORM="Platform/StandaloneMm/PlatformStandaloneMmPkg/PlatformSt
 # https://github.com/tianocore/edk2-platforms/blob/master/Readme.md#if-cross-compiling
 ifeq (arm64,$(DEB_TARGET_ARCH))
 export TARGET_ARCH = 'AARCH64'
-else ifeq ((armhf,$(DEB_TARGET_ARCH))
+else ifeq (armhf,$(DEB_TARGET_ARCH))
 export TARGET_ARCH = 'ARM'
-else ifeq ((amd64,$(DEB_TARGET_ARCH))
+else ifeq (amd64,$(DEB_TARGET_ARCH))
 export TARGET_ARCH = 'X64'
-else ifeq ((i386,$(DEB_TARGET_ARCH))
+else ifeq (i386,$(DEB_TARGET_ARCH))
 export TARGET_ARCH = 'IA32'
 else
 $(error DEB_TARGET_ARCH $(DEB_TARGET_ARCH) unsupported)