diff options
author | Andy Wingo <wingo@pobox.com> | 2008-04-14 16:14:58 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2008-04-14 16:14:58 +0000 |
commit | a93257590c44152c3231a99226ca9f50b9f42ab8 (patch) | |
tree | 0c6c121153420215bea6e0e44b71de32fd4d10c1 /autogen.sh | |
parent | a71f35fefed58a3dc003ba7a6cbc4875d0a0e544 (diff) | |
download | gst-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-x | autogen.sh | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 |