From 5eea0193784384c7028c1f3ac8edee5463c02dfb Mon Sep 17 00:00:00 2001 From: Sandrine Bailleux Date: Fri, 16 Apr 2021 16:08:46 +0200 Subject: [PATCH] Arm: Fix error message printing in board makefile Remove an incorrect tabulation in front of an $(error) function call outside of a recipe, which caused the following text to be displayed: plat/arm/board/common/board_common.mk:36: *** recipe commences before first target. Stop. instead of: plat/arm/board/common/board_common.mk:36: *** "Unsupported ARM_ROTPK_LOCATION value". Stop. Change-Id: I8592948e7de8ab0c4abbc56eb65a53eb1875a83c Signed-off-by: Sandrine Bailleux --- plat/arm/board/common/board_common.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plat/arm/board/common/board_common.mk b/plat/arm/board/common/board_common.mk index 6db0c0031..5cdf1bf39 100644 --- a/plat/arm/board/common/board_common.mk +++ b/plat/arm/board/common/board_common.mk @@ -33,7 +33,7 @@ $(BUILD_PLAT)/bl2/arm_dev_rotpk.o : $(ARM_ROTPK_HASH) $(warning Development keys support for FVP is deprecated. Use `regs` \ option instead) else - $(error "Unsupported ARM_ROTPK_LOCATION value") +$(error "Unsupported ARM_ROTPK_LOCATION value") endif $(eval $(call add_define,ARM_ROTPK_LOCATION_ID))