lint: tighten whitespace check some more

Don't test executable files nor object files, even if the former might
render the test useless on win32 (executable bit isn't well defined there).

Change-Id: Ifb6fc83243289d266f439316c14b6b009f8da5fc
Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com>
Reviewed-on: http://review.coreboot.org/890
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
Patrick Georgi 2012-04-12 15:23:58 +02:00 committed by Patrick Georgi
parent 89823fde18
commit 210fa302a3
1 changed files with 2 additions and 0 deletions

View File

@ -20,6 +20,7 @@
LC_ALL=C export LC_ALL
find src util -name .svn -type d -prune -o \
-perm +111 -prune -o \
-name .git -type d -prune -o \
-name README -prune -o \
-name LICENSE -prune -o \
@ -27,6 +28,7 @@ find src util -name .svn -type d -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 \