aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/hdrcheck.sh
diff options
context:
space:
mode:
authorAlexey Dobriyan <adobriyan@gmail.com>2006-09-12 20:36:00 -0700
committerLinus Torvalds <torvalds@g5.osdl.org>2006-09-13 07:32:15 -0700
commit120e2a97268c312bf81ee3d8cacc75d1f75ef8b5 (patch)
tree1c7f2aa0bc0ebb3f34edfe33eae02be0f2da507a /scripts/hdrcheck.sh
parent[PATCH] x86: reserve a boot-loader ID number for Xen (diff)
downloadlinux-dev-120e2a97268c312bf81ee3d8cacc75d1f75ef8b5.tar.xz
linux-dev-120e2a97268c312bf81ee3d8cacc75d1f75ef8b5.zip
[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/hdrcheck.sh')
-rwxr-xr-xscripts/hdrcheck.sh2
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