From cedb09de9d27d1608e02158c710dd6f2908c8ef1 Mon Sep 17 00:00:00 2001
From: Peter Stuge <peter@stuge.se>
Date: Sun, 25 Jan 2009 23:59:30 +0000
Subject: [PATCH] Make Makefile a bit more portable

Shell echo doesn't always know -n.

Corresponding to flashrom svn r392 and coreboot v2 svn r3897.

Signed-off-by: Peter Stuge <peter@stuge.se>
Acked-by: Peter Stuge <peter@stuge.se>
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 95adb88..940f346 100644
--- a/Makefile
+++ b/Makefile
@@ -55,7 +55,7 @@ dep:
 	@$(CC) -MM *.c > .dependencies
 
 pciutils:
-	@echo; echo -n "Checking for pciutils and zlib... "
+	@echo; printf "Checking for pciutils and zlib... "
 	@$(shell ( echo "#include <pci/pci.h>";		   \
 		   echo "struct pci_access *pacc;";	   \
 		   echo "int main(int argc, char **argv)"; \
-- 
GitLab