summaryrefslogtreecommitdiffstats
path: root/TOOLS
diff options
context:
space:
mode:
authorivo <ivo@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-12-03 21:43:48 +0000
committerivo <ivo@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-12-03 21:43:48 +0000
commit284673cbf572ef5409a2a6d6cebb10f781d95e40 (patch)
tree0dcd6bc202df819c867ff66888d8a85206ab27b8 /TOOLS
parent66a1addb000535c21d90f71701981e6b51e02c0d (diff)
downloadmpv-284673cbf572ef5409a2a6d6cebb10f781d95e40.tar.bz2
mpv-284673cbf572ef5409a2a6d6cebb10f781d95e40.tar.xz
when gathering the list of files to check via svn info, also include
externals (libav*) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25288 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'TOOLS')
-rwxr-xr-xTOOLS/checktree.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/TOOLS/checktree.sh b/TOOLS/checktree.sh
index e4213ecf0b..7cf9b233d5 100755
--- a/TOOLS/checktree.sh
+++ b/TOOLS/checktree.sh
@@ -66,8 +66,10 @@ all_filenames() {
| 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
}