]> git.sesse.net Git - ffmpeg/commitdiff
tools/bisect: rename to tools/bisect-create
authorMichael Niedermayer <michaelni@gmx.at>
Sat, 7 Jul 2012 12:49:44 +0000 (14:49 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Sat, 7 Jul 2012 12:51:51 +0000 (14:51 +0200)
Idea-by: Alexander Strasser
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tools/bisect-create [moved from tools/bisect with 61% similarity]

similarity index 61%
rename from tools/bisect
rename to tools/bisect-create
index f03e47cce478f141fc05d895f8830068a960bae0..6442b5cbe367ce2baf3779534b3ea13b98c69887 100755 (executable)
@@ -2,18 +2,16 @@
 
 set -e
 
-if test "bisect" = "`basename $0`" ; then
-    echo WARNING, trying to execute tools/bisect directly this cannot work as
-    echo the script itself would not be available in older checkouts
-    echo please use tools/ffbisect
-    git show master:tools/bisect > tools/ffbisect
+if test "bisect-create" = "`basename $0`" ; then
+    echo tools/ffbisect created
+    git show master:tools/bisect-create > tools/ffbisect
     chmod u+x tools/ffbisect
     exit 1
 fi
 
-if ! git show master:tools/bisect | diff - tools/ffbisect > /dev/null ; then
+if ! git show master:tools/bisect-create | diff - tools/ffbisect > /dev/null ; then
     echo updating tools/ffbisect script to HEAD.
-    git show master:tools/bisect > tools/ffbisect
+    git show master:tools/bisect-create > tools/ffbisect
     chmod u+x tools/ffbisect
     tools/ffbisect $*
     exit 0