diff options
author | Keith Bostic <keith@wiredtiger.com> | 2012-03-28 11:32:16 +0000 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2012-03-28 11:32:16 +0000 |
commit | a82a65805fa786b86715b4d41013d870f3af7385 (patch) | |
tree | eecb8c1b8143541bb6305ee2fed463b0a716d427 | |
parent | 6a7972d8cad24dd6da99b2103412243b990aaf6c (diff) | |
download | mongo-a82a65805fa786b86715b4d41013d870f3af7385.tar.gz |
When we removed test/config.i, it broke s_types -- simplify s_types,
just do a find on src/.
-rw-r--r-- | dist/s_types | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/dist/s_types b/dist/s_types index 274ae1d13fd..0b42086e266 100644 --- a/dist/s_types +++ b/dist/s_types @@ -3,12 +3,8 @@ t=__wt.$$ trap 'rm -f $t; exit 0' 0 1 2 3 13 15 -l="`cd .. && echo src/include/*.[hi] src/include/*.in`" -l="`cd .. && find test -name '*.c' -print`" -l="`cd .. && echo */*.i`" -l="$l `sed -e '/^[a-z]/! d' filelist`" - (cd .. && + l="`find src -name '*.[chi]' -o -name '*.in'`" egrep 'u_quad|u_int8_t|u_int16_t|u_int32_t|u_int64_t' $l | sed '/@u_quad_decl@/d') > $t test -s $t && cat $t && exit 1 |