[MPlayer-cvslog] r32905 - trunk/configure

diego subversion at mplayerhq.hu
Wed Feb 16 13:25:39 CET 2011


Author: diego
Date: Wed Feb 16 13:25:39 2011
New Revision: 32905

Log:
Limit FFmpeg git clone to the last revision to save time and bandwidth.

Since the main purpose of the FFmpeg clone embedded in MPlayer is getting
MPlayer compiled and not FFmpeg development, this is the better solution.

Patch by Gus Wirth, gwirth79 gmail com, closes Bugzilla #1877.

Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	Wed Feb 16 13:00:29 2011	(r32904)
+++ trunk/configure	Wed Feb 16 13:25:39 2011	(r32905)
@@ -50,7 +50,7 @@ fi
 if ! test -e ffmpeg ; then
   echo "No FFmpeg checkout, press enter to download one with git or CTRL+C to abort"
   read tmp
-  if ! git clone git://git.videolan.org/ffmpeg.git ffmpeg ; then
+  if ! git --depth 1 clone git://git.videolan.org/ffmpeg.git ffmpeg ; then
     rm -rf ffmpeg
     echo "Failed to get a FFmpeg checkout"
     exit 1


More information about the MPlayer-cvslog mailing list