diff options
author | Paul Mackerras <paulus@samba.org> | 2006-09-14 07:07:18 +1000 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-09-14 07:07:18 +1000 |
commit | c547fc28ab3e8716076fdaf4bd0260c5d63a18f7 (patch) | |
tree | 34af1fa64a63618660187ae58ad182665a1861ef /scripts | |
parent | 3dd836a56de0d4f049438412959b905e1db4666e (diff) | |
parent | 63b98080daa35f0d682db04f4fb7ada010888752 (diff) | |
download | linux-3.10-c547fc28ab3e8716076fdaf4bd0260c5d63a18f7.tar.gz linux-3.10-c547fc28ab3e8716076fdaf4bd0260c5d63a18f7.tar.bz2 linux-3.10-c547fc28ab3e8716076fdaf4bd0260c5d63a18f7.zip |
Merge branch 'linux-2.6'
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/hdrcheck.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/hdrcheck.sh b/scripts/hdrcheck.sh index b3bb683b56b..b5ca35aa174 100755 --- a/scripts/hdrcheck.sh +++ b/scripts/hdrcheck.sh @@ -1,8 +1,8 @@ #!/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 + echo $2 requires $FILE, which does not exist in exported headers exit 1 fi done |