summaryrefslogtreecommitdiffstats
path: root/util/lint
diff options
context:
space:
mode:
authorPatrick Georgi <patrick@georgi-clan.de>2015-02-05 23:38:45 +0100
committerPatrick Georgi <pgeorgi@google.com>2015-02-12 11:22:59 +0100
commit11b6ab6492cebf215bbd95ff69fbb2652c99e8c9 (patch)
tree66aea676928226900c5b7aa4c6918e3bda9966f1 /util/lint
parent7a4454f9ce561a4c5306f9b6b1c84d753e9d3b2b (diff)
downloadcoreboot-11b6ab6492cebf215bbd95ff69fbb2652c99e8c9.tar.gz
coreboot-11b6ab6492cebf215bbd95ff69fbb2652c99e8c9.tar.bz2
coreboot-11b6ab6492cebf215bbd95ff69fbb2652c99e8c9.zip
lint: exclude nvidia submodule from file list
From git's point of view submodules are a weird third thing between file and directory. Avoid trying to apply file handling on a directory. Change-Id: Ibbc9c28e1657d96413c5fb08705d30e25171254d Signed-off-by: Patrick Georgi <patrick@georgi-clan.de> Reviewed-on: http://review.coreboot.org/8372 Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com> Tested-by: build bot (Jenkins)
Diffstat (limited to 'util/lint')
-rwxr-xr-xutil/lint/lint-stable-003-whitespace2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/lint/lint-stable-003-whitespace b/util/lint/lint-stable-003-whitespace
index 22c5c3c013b9..47853baa6b03 100755
--- a/util/lint/lint-stable-003-whitespace
+++ b/util/lint/lint-stable-003-whitespace
@@ -19,6 +19,6 @@
# DESCR: Check for superfluous whitespace in the tree
LC_ALL=C export LC_ALL
-grep -l "[[:space:]][[:space:]]*$" `git ls-files src util |egrep -v "(^3rdparty|^src/vendorcode/|^util/kconfig/|\<COPYING\>|\<LICENSE\>|\<README\>|_shipped$|\.patch|\.bin$)"` | \
+grep -l "[[:space:]][[:space:]]*$" `git ls-files src util |egrep -v "(^3rdparty|^src/vendorcode/|^util/kconfig/|^util/nvidia/cbootimage$|\<COPYING\>|\<LICENSE\>|\<README\>|_shipped$|\.patch|\.bin$)"` | \
sed -e "s,^.*$,File & has lines ending with whitespace.,"