Remove now obsolete references to _g-suffixed binaries.

Automatic stripping of binaries was removed in commit e0be794
and the _g binaries disappeared along with it.
This commit is contained in:
Diego Biurrun
2011-04-18 23:12:40 +02:00
parent facc48f157
commit d11818eff4
2 changed files with 2 additions and 8 deletions

View File

@@ -13,8 +13,8 @@ rm -f $logfile
for i in $list ; do
echo ---------------- >> $logfile
echo $i >> $logfile
./ffmpeg_g -flags +bitexact -i $i -acodec copy -vcodec copy -y first.nut
./ffmpeg_g -flags +bitexact -i first.nut -acodec copy -vcodec copy -y second.nut
./ffmpeg -flags +bitexact -i $i -acodec copy -vcodec copy -y first.nut
./ffmpeg -flags +bitexact -i first.nut -acodec copy -vcodec copy -y second.nut
cmp first.nut second.nut >> $logfile
md5sum first.nut >> $logfile
done