From 8ebd11eab999654873010e706b95e5fe5855ea64 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Thu, 8 Mar 2012 11:06:25 -0800 Subject: Fix lint-stable checkin hooks on MacOS X - wc adds a number of leading spaces which broke cut - sed can't replace spaces with new lines, so use tr for that. - make sure directories are created if they're not there. Change-Id: Ia0db059683abe3d97b0ab6feaece660a1f4e5079 Signed-off-by: Stefan Reinauer Reviewed-on: http://review.coreboot.org/774 Reviewed-by: Ronald G. Minnich Tested-by: build bot (Jenkins) --- Makefile.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile.inc') diff --git a/Makefile.inc b/Makefile.inc index e495f4587e..d36d15f458 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -225,7 +225,7 @@ lint lint-stable: grep "^# DESCR:" $$script | sed "s,.*DESCR: *,," ; \ echo ========; \ $$script > $$LINTLOG; \ - if [ `wc -l $$LINTLOG | cut -d' ' -f1` -eq 0 ]; then \ + if [ `echo $$( wc -l $$LINTLOG ) | cut -d' ' -f1` -eq 0 ]; then \ printf "success\n\n"; \ else \ echo test failed: ; \ -- cgit v1.2.3