Ticket #1877: configure-limit-ffmpeg-checkout.patch

File configure-limit-ffmpeg-checkout.patch, 506 bytes (added by gwirth79@…, 15 years ago)

patch configure to limit ffmpeg checkout

  • configure

     
    5050if ! test -e ffmpeg ; then
    5151  echo "No FFmpeg checkout, press enter to download one with git or CTRL+C to abort"
    5252  read tmp
    53   if ! git clone git://git.videolan.org/ffmpeg.git ffmpeg ; then
     53  if ! git clone --depth 1 git://git.videolan.org/ffmpeg.git ffmpeg ; then
    5454    rm -rf ffmpeg
    5555    echo "Failed to get a FFmpeg checkout"
    5656    exit 1