68510bd1f970ca5e6556f5a47f59341cc983bed3
braney
  Thu Jan 14 12:42:27 2021 -0800
call buildTableDescriptions so it looks only in hg/lib and
subdirectores for AS files.

diff --git src/test/tbd.wrapper.hgwbeta src/test/tbd.wrapper.hgwbeta
index ab2433e..c34a42f 100755
--- src/test/tbd.wrapper.hgwbeta
+++ src/test/tbd.wrapper.hgwbeta
@@ -4,30 +4,31 @@
 # generate the sql code for the generation of the tableDescriptions, but
 # then will compare it to the sql code that was used to build the current
 # tableDescriptions table. If the code has not changed, it won't regenerate
 # the table.
 #
 # Written by: Jorge Garcia
 # Date: March 18, 2019
 # 
 
 # go to the build directory and clear it, then create all the .sql files
 cd /scratch/build/tbd.new.build.hgwbeta
 rm -f *
 $HOME/kent/src/test/buildTableDescriptions.pl \
    -kentSrc $HOME/kent/src \
    -hgConf $HOME/.hg.conf.beta \
+   -subDir hg/lib \
    -noLoad >& ~/hgwbeta.buildTableDescriptions.log
 
 # once we have all the new .sql files, compare each new file to the 
 # corresponding file in the current directory. If the new file is different
 # than the current file (or if the file doesn't exist in the current directory)
 # then generate a new tableDescriptions and move the .sql file to the current
 # directory
 echo "Starting tbd on hgwbeta.\n" >> /var/tmp/tbd.hgwbeta.log
 /bin/date >> /var/tmp/tbd.hgwbeta.log
 /bin/mv $HOME/.hg.conf $HOME/.hg.conf.tmpsave
 /bin/cp $HOME/.hg.conf.beta $HOME/.hg.conf
 for i in *
 do
    db=`basename -s .tableDescriptions.sql $i`
    if [ -f ../tbd.current.build.hgwbeta/$i ]