Thomas Heijligen has uploaded this change for review.
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>
---
M Makefile
1 file changed, 13 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/22/74522/1
diff --git a/Makefile b/Makefile
index ec79963..bdf281d 100644
--- a/Makefile
+++ b/Makefile
@@ -967,7 +967,7 @@
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
To view, visit change 74522. To unsubscribe, or for help writing mail filters, visit settings.