Mercurial > mplayer.hg
changeset 25260:601f3c36dc9e
when gathering the list of files to check via svn info, also include
externals (libav*)
author | ivo |
---|---|
date | Mon, 03 Dec 2007 21:43:48 +0000 |
parents | 91cb6c6ec0c2 |
children | 502ee332974f |
files | TOOLS/checktree.sh |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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 }