swh:1:snp:77163734605b0ec556b01d897b7bb4a7e30d46b6
Raw File
Tip revision: b6ff50833ad43a8ebd9b16bf53c334f7aaf33c41 authored by Linus Torvalds on 30 July 2006, 06:15:36 UTC
Linux v2.6.18-rc3
Tip revision: b6ff508
hdrcheck.sh
#!/bin/sh

for FILE in `grep '^#include <' $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
    fi
done
back to top