diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2014-08-10 19:07:09 +0200 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2014-08-11 19:12:22 +0200 |
commit | 4b65c2ad3300990ea6b471559c5d10b5c6111430 (patch) | |
tree | 8b6336322f175fec3596b4d8319d210604476aba | |
parent | f3155d205e6c78b09e4a69af89aa4853bf6a9f6d (diff) | |
download | coreboot-4b65c2ad3300990ea6b471559c5d10b5c6111430.tar.gz coreboot-4b65c2ad3300990ea6b471559c5d10b5c6111430.tar.bz2 coreboot-4b65c2ad3300990ea6b471559c5d10b5c6111430.zip |
lint: improve whitespace test
The whitespace test only trips on files that are part
of the git index - in particular not temporary editor
files or other cruft that doesn't hurt anyone.
Change-Id: I793fcc773845ee02281d8614b07e9c5958126a5a
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/6582
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
-rwxr-xr-x | util/lint/lint-stable-003-whitespace | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/util/lint/lint-stable-003-whitespace b/util/lint/lint-stable-003-whitespace index 1e824a1e76e3..4c0a5fdb55bb 100755 --- a/util/lint/lint-stable-003-whitespace +++ b/util/lint/lint-stable-003-whitespace @@ -19,25 +19,6 @@ # DESCR: Check for superfluous whitespace in the tree LC_ALL=C export LC_ALL -find src util -name .svn -type d -prune -o \ - -type f -perm /111 -prune -o \ - -name .git -type d -prune -o \ - -name README -prune -o \ - -name LICENSE -prune -o \ - -name TODO -prune -o \ - -name COPYING -prune -o \ - -name \*.txt -prune -o \ - -name \*.exe -prune -o \ - -name \*.o -prune -o \ - -name microcode-\*.h -prune -o \ - -name \*.?_shipped -prune -o \ - -name \*.[18] -prune -o \ - -name \*~ -prune -o \ - -name kconfig -type d -prune -o \ - -name romcc -type d -prune -o \ - -name crossgcc -type d -prune -o \ - -name vendorcode -type d -prune -o \ - -type f -exec \ - grep -l "[[:space:]][[:space:]]*$" {} + | \ +grep -l "[[:space:]][[:space:]]*$" `git ls-files src util |egrep -v "(^3rdparty|^src/vendorcode/|^util/kconfig/|\<COPYING\>|\<LICENSE\>|\<README\>|_shipped$|\.patch$)"` | \ sed -e "s,^.*$,File & has lines ending with whitespace.," |