summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2008-04-14 16:14:58 +0000
committerAndy Wingo <wingo@pobox.com>2008-04-14 16:14:58 +0000
commita93257590c44152c3231a99226ca9f50b9f42ab8 (patch)
tree0c6c121153420215bea6e0e44b71de32fd4d10c1 /autogen.sh
parenta71f35fefed58a3dc003ba7a6cbc4875d0a0e544 (diff)
downloadgst-libav-a93257590c44152c3231a99226ca9f50b9f42ab8.tar.gz
Because ffmpeg checks out libswscale via an svn:externals, checking out an old ffmpeg does not check out a correspond...
Original commit message from CVS: 2008-04-14 Andy Wingo <wingo@pobox.com> * autogen.sh: * ffmpegrev (FFMPEG_EXTERNALS_UPDATE): Because ffmpeg checks out libswscale via an svn:externals, checking out an old ffmpeg does not check out a corresponding libswscale. Keep the swscale checkout manually synchronized, then. Update this when you update FFMPEG_REVISION.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh
index dd07d00..8741891 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -22,10 +22,14 @@ then
rm -rf $FFMPEG_CO_DIR
echo "+ getting ffmpeg from svn"
svn -r $FFMPEG_REVISION co $FFMPEG_SVN $FFMPEG_CO_DIR
+ echo "+ updating externals"
+ sh -c "$FFMPEG_EXTERNALS_UPDATE"
else
# update ffmpeg from its repository
echo "+ updating ffmpeg checkout"
svn -r $FFMPEG_REVISION up $FFMPEG_CO_DIR
+ echo "+ updating externals"
+ sh -c "$FFMPEG_EXTERNALS_UPDATE"
fi