dect
/
linux-2.6
Archived
13
0
Fork 0

[PATCH] headers_check: clarify error message

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>
This commit is contained in:
Alexey Dobriyan 2006-09-12 20:36:01 -07:00 committed by Linus Torvalds
parent 120e2a9726
commit d5e064a6c7
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
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