diff options
author | ru <ru@FreeBSD.org> | 2001-03-27 16:15:25 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2001-03-27 16:15:25 +0000 |
commit | ba83ff266d9ff7453501483c6c6d11d05190466c (patch) | |
tree | 2acd084455e5e24999ce6ba04849a82d809a45d3 /usr.bin/kdump | |
parent | aec4c6204b3dfa70b3214176a6a67ae907395e67 (diff) | |
download | FreeBSD-src-ba83ff266d9ff7453501483c6c6d11d05190466c.zip FreeBSD-src-ba83ff266d9ff7453501483c6c6d11d05190466c.tar.gz |
Traverse ${DESTDIR}/usr/include in lexographical order.
This should fix problems reported recently on -current.
Diffstat (limited to 'usr.bin/kdump')
-rw-r--r-- | usr.bin/kdump/mkioctls | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/kdump/mkioctls b/usr.bin/kdump/mkioctls index 143f6cf..e166a15 100644 --- a/usr.bin/kdump/mkioctls +++ b/usr.bin/kdump/mkioctls @@ -19,7 +19,7 @@ fi # XXX netipx conflicts with netns (leave out netns). ioctl_includes=` cd $1 - find * -name '*.h' -follow | + find -s * -name '*.h' -follow | egrep -v '^(netns)/' | xargs egrep -l \ '^#[ ]*define[ ]+[A-Za-z_][A-Za-z0-9_]*[ ]+_IO[^a-z0-9_]' | |