# HG changeset patch # User ivo # Date 1196718228 0 # Node ID 601f3c36dc9eb51f7dad9d338743f9852d44719f # Parent 91cb6c6ec0c258a523364c3de95c11ef409587fc when gathering the list of files to check via svn info, also include externals (libav*) diff -r 91cb6c6ec0c2 -r 601f3c36dc9e TOOLS/checktree.sh --- a/TOOLS/checktree.sh Mon Dec 03 21:40:54 2007 +0000 +++ b/TOOLS/checktree.sh Mon Dec 03 21:43:48 2007 +0000 @@ -66,8 +66,10 @@ | grep -v "\.\#\|\~$\|\.depend\|\/\.svn\/\|config.mak\|^\./config\.h" \ | grep -v "^\./version\.h\|\.o$\|\.a$\|configure.log\|^\./help_mp.h" else - svn info -R | sed -n '/Path:/bb; :a; d; b; :b; s/Path: /.\//; h; :c; n; + for p in . libavcodec libavutil libavformat ; do + svn info -R $p | sed -n '/Path:/bb; :a; d; b; :b; s/Path: /.\//; h; :c; n; /Node Kind:/bd; bc; :d; /directory/ba; g; p;' + done fi }