From 44a87380c567e31e5065c6b7f038fd2905c20fe3 Mon Sep 17 00:00:00 2001 From: Sandrine Bailleux Date: Wed, 3 Oct 2018 14:56:38 +0200 Subject: [PATCH] Remove incorrect tabulation in Makefile When attempting to compile TF-A with "SPD=something ARCH=aarch32", the following error message is printed: Makefile:291: *** recipe commences before first target. Stop. This is because the call to the error function is indented using a tab whereas it's not part of a rule's recipe. Replace the tab by spaces. Change-Id: Ic9b603837a0e43f2f7070cb39137541c332365d2 Signed-off-by: Sandrine Bailleux --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 23a1b0a37..45197423f 100644 --- a/Makefile +++ b/Makefile @@ -288,7 +288,7 @@ INCLUDE_TBBR_MK := 1 ifneq (${SPD},none) ifeq (${ARCH},aarch32) - $(error "Error: SPD is incompatible with AArch32.") + $(error "Error: SPD is incompatible with AArch32.") endif ifdef EL3_PAYLOAD_BASE $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")