diff options
author | Peter Stuge <peter@stuge.se> | 2009-01-25 23:59:30 +0000 |
---|---|---|
committer | Peter Stuge <peter@stuge.se> | 2009-01-25 23:59:30 +0000 |
commit | bb79ba4aae7c5b9bf270577e4e75113466804a0b (patch) | |
tree | 94b2f5e5ed7b9ea4c0629b1ed331a165ddccb765 | |
parent | 68c0cec9dab171b716894f8f7be5069daca902e8 (diff) |
flashrom: Make Makefile a bit more portable. Shell echo doesn't always know -n.
Signed-off-by: Peter Stuge <peter@stuge.se>
Acked-by: Peter Stuge <peter@stuge.se>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3897 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | util/flashrom/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/flashrom/Makefile b/util/flashrom/Makefile index 95adb881a8..940f346ef8 100644 --- a/util/flashrom/Makefile +++ b/util/flashrom/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)"; \ |