diff options
author | Martin Roth <martinroth@google.com> | 2015-10-13 13:40:59 -0600 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-10-17 06:16:05 +0000 |
commit | e4fc407e3f6f3975e6abe2a7b4b9f907bcba2af5 (patch) | |
tree | eadc4a8abb6e87613e19a734d4ca9f926447f28e /Makefile.inc | |
parent | 5266fe4d97225aab77145c95147e876402dd6479 (diff) |
lint: Move the lint script out of Makefile.inc
In preparation for adding junit xml to the lint tests, move the
script out of Makefile.inc and into its own file.
Add a copyright, usage, and error checking that was not needed
inside the Makefile.
Change-Id: I32bebc6a5f1f6fa652812c8a014d84006e2e6c8a
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: http://review.coreboot.org/11890
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'Makefile.inc')
-rw-r--r-- | Makefile.inc | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/Makefile.inc b/Makefile.inc index 0053dfb93b..1c81c69347 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -424,24 +424,7 @@ update: dongle.py -c /dev/term/1 $(obj)/coreboot.rom EOF lint lint-stable: - FAILED=0; LINTLOG=`mktemp .tmpconfig.lintXXXXX`; \ - for script in util/lint/$@-*; do \ - echo; echo `basename $$script`; \ - grep "^# DESCR:" $$script | sed "s,.*DESCR: *,," ; \ - echo ========; \ - $$script > $$LINTLOG; \ - if [ `cat $$LINTLOG | wc -l` -eq 0 ]; then \ - printf "success\n\n"; \ - else \ - echo test failed: ; \ - cat $$LINTLOG; \ - rm -f $$LINTLOG; \ - FAILED=$$(( $$FAILED + 1 )); \ - fi; \ - echo ========; \ - done; \ - test $$FAILED -eq 0 || { echo "ERROR: $$FAILED test(s) failed."; rm -f $$LINTLOG && exit 1; }; \ - rm -f $$LINTLOG + util/lint/lint $@ gitconfig: [ -d .git ] |