#!/bin/sh

# find all patches that don't modify any header files

patches=`find ./ -name "*.dpatch"`

for patch in $patches ; do
    grep -q -e "^---.*\.h" $patch
    if [ $? -ne 0 ] ; then
	basename $patch
    fi
done
