[FFmpeg-cvslog] tools/bisect: rename temporary file and add it to git ignore

Michael Niedermayer git at videolan.org
Sat Jul 7 15:03:40 CEST 2012


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Tue Jul  3 13:57:15 2012 +0200| [6de70d7fbf21db32ddad571a3104b89d38d98bb6] | committer: Michael Niedermayer

tools/bisect: rename temporary file and add it to git ignore

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6de70d7fbf21db32ddad571a3104b89d38d98bb6
---

 .gitignore   |    1 +
 tools/bisect |    6 +++---
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/.gitignore b/.gitignore
index ac5b7cc..77c9859 100644
--- a/.gitignore
+++ b/.gitignore
@@ -48,6 +48,7 @@
 /tests/vsynth1/
 /tools/aviocat
 /tools/ffbisect
+/tools/bisect.need
 /tools/cws2fws
 /tools/ffeval
 /tools/graph2dot
diff --git a/tools/bisect b/tools/bisect
index f840243..f03e47c 100755
--- a/tools/bisect
+++ b/tools/bisect
@@ -23,12 +23,12 @@ case "$1" in
     need)
         case $2 in
             ffmpeg|ffplay|ffprobe|ffserver)
-                echo $2.c >> need
+                echo $2.c >> tools/bisect.need
             ;;
         esac
     ;;
     start|reset)
-        echo . > need
+        echo . > tools/bisect.need
         git bisect $*
     ;;
     skip)
@@ -37,7 +37,7 @@ case "$1" in
     good|bad)
         git bisect $*
 
-        until ls `cat need` > /dev/null 2> /dev/null; do
+        until ls `cat tools/bisect.need` > /dev/null 2> /dev/null; do
             git bisect skip || break
         done
     ;;



More information about the ffmpeg-cvslog mailing list