diff options
author | Keith Bostic <keith@wiredtiger.com> | 2012-07-07 08:37:08 +0000 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2012-07-07 08:37:08 +0000 |
commit | 722a39eb6ccdc0be57bca9e816bdc3e3a9c4e627 (patch) | |
tree | 9e4e984532d0e4a8b04ec0ed1a86222a50c701e1 /dist/s_string | |
parent | 1fb879844911a83588db25a2ce23a7b7cd104e28 (diff) | |
download | mongo-722a39eb6ccdc0be57bca9e816bdc3e3a9c4e627.tar.gz |
spellchk the utility code.
Diffstat (limited to 'dist/s_string')
-rw-r--r-- | dist/s_string | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/dist/s_string b/dist/s_string index daaf3fc6894..3c4f8ef3b5e 100644 --- a/dist/s_string +++ b/dist/s_string @@ -21,9 +21,13 @@ check() { } } -l="`cd .. && echo src/include/*.[hi] src/include/*.in`" -for i in $l `sed -e '/^[a-z]/! d' filelist`; do - check $i +# List of files to spellchk. +l=`(cd .. && + find examples ext src test -name '*.[chisy]' && + find src -name '*.in')` + +for f in $l; do + check $f done exit 0 |