diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2006-09-13 07:36:00 +0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-09-13 18:32:15 +0400 |
commit | 120e2a97268c312bf81ee3d8cacc75d1f75ef8b5 (patch) | |
tree | 1c7f2aa0bc0ebb3f34edfe33eae02be0f2da507a /scripts | |
parent | 354332ee44834819ff31a0afbeffda0c32244f8f (diff) | |
download | linux-120e2a97268c312bf81ee3d8cacc75d1f75ef8b5.tar.xz |
[PATCH] headers_check: improve #include regexp
The following combinations of pp-tokens are used
#include
#include
# include
so, script'd better check for all of them.
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Cc: David Woodhouse <dwmw2@infradead.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/hdrcheck.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/hdrcheck.sh b/scripts/hdrcheck.sh index b3bb683b56b6..cbf650dbc7d7 100755 --- a/scripts/hdrcheck.sh +++ b/scripts/hdrcheck.sh @@ -1,6 +1,6 @@ #!/bin/sh -for FILE in `grep '^#include <' $2 | cut -f2 -d\< | cut -f1 -d\> | egrep ^linux\|^asm` ; do +for FILE in `grep '^[ \t]*#[ \t]*include[ \t]*<' $2 | cut -f2 -d\< | cut -f1 -d\> | egrep ^linux\|^asm` ; do if [ ! -r $1/$FILE ]; then echo $2 requires $FILE, which does not exist exit 1 |