summaryrefslogtreecommitdiff
path: root/make_helpers
diff options
context:
space:
mode:
authorEvan Lloyd <evan.lloyd@arm.com>2017-04-11 16:52:00 +0100
committerEvan Lloyd <evan.lloyd@arm.com>2017-05-02 19:12:11 +0100
commit052ab529c4a02ee60974c20a1dd954238ec40c4c (patch)
treedd42cd0bca0f08813ed47f23130c1ae376ac024b /make_helpers
parent6ba7d274e25276143c3855dfa1a087f292141a63 (diff)
Build: Correct Unix specific echo commands
Some recent changes have added direct use of the echo command without parameters. This fails on a Windows shell, because echo without parameters reports the mode ("ECHO is on"). This is corrected using the ECHO_BLANK_LINE macro already provided for that purpose. Change-Id: I5fd7192861b4496f6f46b4f096e80a752cd135d6 Signed-off-by: Evan Lloyd <evan.lloyd@arm.com>
Diffstat (limited to 'make_helpers')
-rw-r--r--make_helpers/build_macros.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/make_helpers/build_macros.mk b/make_helpers/build_macros.mk
index cc513937..2cdbfa30 100644
--- a/make_helpers/build_macros.mk
+++ b/make_helpers/build_macros.mk
@@ -347,9 +347,9 @@ $(DUMP): $(ELF)
$(BIN): $(ELF)
@echo " BIN $$@"
$$(Q)$$(OC) -O binary $$< $$@
- @echo
+ @${ECHO_BLANK_LINE}
@echo "Built $$@ successfully"
- @echo
+ @${ECHO_BLANK_LINE}
.PHONY: bl$(1)
bl$(1): $(BIN) $(DUMP)