comparison configure @ 35456:1a510ca3a047

Print some help on what to do if we cannot get a FFmpeg snapshot.
author reimar
date Sat, 01 Dec 2012 20:09:34 +0000
parents 9d626905f38b
children c0e00a10a620
comparison
equal deleted inserted replaced
35455:c9c79a011f6f 35456:1a510ca3a047
52 echo "No FFmpeg checkout, press enter to download one with git or CTRL+C to abort" 52 echo "No FFmpeg checkout, press enter to download one with git or CTRL+C to abort"
53 read tmp 53 read tmp
54 if ! git clone --depth 1 git://source.ffmpeg.org/ffmpeg.git ffmpeg ; then 54 if ! git clone --depth 1 git://source.ffmpeg.org/ffmpeg.git ffmpeg ; then
55 rm -rf ffmpeg 55 rm -rf ffmpeg
56 echo "Failed to get a FFmpeg checkout" 56 echo "Failed to get a FFmpeg checkout"
57 echo "Please try again or put FFmpeg source code copy into ffmpeg/ manually."
58 echo "Nightly snapshot: http://ffmpeg.org/releases/ffmpeg-snapshot.tar.bz2"
59 echo "To use a github mirror via http (e.g. because a firewall blocks git):"
60 echo "git clone --depth 1 https://github.com/FFmpeg/FFmpeg ffmpeg; touch ffmpeg/mp_auto_pull"
57 exit 1 61 exit 1
58 fi 62 fi
59 touch ffmpeg/mp_auto_pull 63 touch ffmpeg/mp_auto_pull
60 fi 64 fi
61 65