[MPlayer-cvslog] r25288 - trunk/TOOLS/checktree.sh
ivo
subversion at mplayerhq.hu
Mon Dec 3 22:43:48 CET 2007
Author: ivo
Date: Mon Dec 3 22:43:48 2007
New Revision: 25288
Log:
when gathering the list of files to check via svn info, also include
externals (libav*)
Modified:
trunk/TOOLS/checktree.sh
Modified: trunk/TOOLS/checktree.sh
==============================================================================
--- trunk/TOOLS/checktree.sh (original)
+++ trunk/TOOLS/checktree.sh Mon Dec 3 22:43:48 2007
@@ -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
}
More information about the MPlayer-cvslog
mailing list