summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSandrine Bailleux <sandrine.bailleux@arm.com>2018-04-27 11:00:38 +0200
committerSandrine Bailleux <sandrine.bailleux@arm.com>2018-04-27 16:32:59 +0200
commitf7c965e39bc1bb955a00b41b3be9458fe85ee7bf (patch)
tree2d9ff2e7b730cf8d809f290d4c376851142597b3
parent77610c4f1a59f2233e257ed7734136446684890b (diff)
Build: Fix display in autogen rule
The autogen rule is not inside an 'eval' so it does not need a double dollar for variable expansion. This made it print an empty string like that: AUTOGEN Change-Id: I953fe72110d5edefbfd3bd2d4145af1d808b89d1 Signed-off-by: Sandrine Bailleux <sandrine.bailleux@arm.com>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 270b1e8..aa4bf4d 100644
--- a/Makefile
+++ b/Makefile
@@ -408,7 +408,7 @@ $(AUTOGEN_DIR):
$(Q)mkdir -p "$@"
$(AUTOGEN_DIR)/tests_list.c $(AUTOGEN_DIR)/tests_list.h: $(AUTOGEN_DIR) ${TESTS_FILE} ${PLAT_TESTS_SKIP_LIST}
- @echo " AUTOGEN $$@"
+ @echo " AUTOGEN $@"
tools/generate_test_list/generate_test_list.pl $(AUTOGEN_DIR)/tests_list.c $(AUTOGEN_DIR)/tests_list.h ${TESTS_FILE} $(PLAT_TESTS_SKIP_LIST)
$(eval $(call MAKE_IMG,tftf))