summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Heijligen <thomas.heijligen@secunet.com>2023-04-19 16:10:24 +0200
committerAnastasia Klimchuk <aklm@chromium.org>2023-05-06 11:46:06 +0000
commit70a38170b9e592c70f12df1a62723b372f5b3312 (patch)
treead1a050a150f86c9d6df985e8eb211c02f49b70a
parent1776bb46ba6ea3d1ab2ec3f0cd88158aabed7400 (diff)
downloadflashrom-git-70a38170b9e592c70f12df1a62723b372f5b3312.tar.gz
Makefile: Use printf instead of echo -n
On MacOS `echo -n` is not working. Change-Id: I96bb6c60e74133bbc86d5069cb076ee43f4bca83 Signed-off-by: Thomas Heijligen <thomas.heijligen@secunet.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/74522 Reviewed-by: Paul Menzel <paulepanter@mailbox.org> Reviewed-by: Anastasia Klimchuk <aklm@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0e169428..3258ac36 100644
--- a/Makefile
+++ b/Makefile
@@ -965,7 +965,7 @@ endif
config:
@echo Building flashrom version $(VERSION)
- @echo -n "C compiler found: "
+ @printf "C compiler found: "
@if [ $(CC_WORKING) = yes ]; \
then $(CC) --version 2>/dev/null | head -1; \
else echo no; echo Aborting.; exit 1; fi