summaryrefslogtreecommitdiffstats
path: root/TOOLS
diff options
context:
space:
mode:
authorivo <ivo@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-12-05 23:44:31 +0000
committerivo <ivo@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-12-05 23:44:31 +0000
commit56f0494615c29b696090c58be06f89797b7f4749 (patch)
tree865eb8681ee3c53d8b09b4ad0dbde191c7435699 /TOOLS
parent86edf7b2972d4fe71e9d930e6dec235b1452a230 (diff)
downloadmpv-56f0494615c29b696090c58be06f89797b7f4749.tar.bz2
mpv-56f0494615c29b696090c58be06f89797b7f4749.tar.xz
suppress silly messages when checktree is not called from the root of the tree
but nevertheless has no specific arguments to work with. it will traverse the tree from there, but obviously cannot find our externals. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25312 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'TOOLS')
-rwxr-xr-xTOOLS/checktree.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/TOOLS/checktree.sh b/TOOLS/checktree.sh
index a7d26c67f1..e2e4a1f3f1 100755
--- a/TOOLS/checktree.sh
+++ b/TOOLS/checktree.sh
@@ -67,7 +67,7 @@ all_filenames() {
| grep -v "^\./version\.h\|\.o$\|\.a$\|configure.log\|^\./help_mp.h"
else
for p in . libavcodec libavutil libavformat libpostproc ; do
- svn info -R $p | sed -n \
+ svn info -R $p 2>/dev/null | sed -n \
'/Path:/bb; :a; d; b; :b; s/Path: /.\//; h; :c; n;
/Node Kind:/bd; bc; :d; /directory/ba; g; p;'
done