Opened 14 years ago
Closed 13 years ago
#1877 closed defect (fixed)
configure checks out all ffmpeg history
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | normal | Component: | build system |
Version: | HEAD | Severity: | minor |
Keywords: | Cc: | ||
Blocked By: | Blocking: | ||
Reproduced by developer: | no | Analyzed by developer: | no |
Description
The migration of ffmpeg from svn to git caused a change in the way the ffmpeg code is checked out. The configure script now uses git to check out the code. However, it checks out ALL ffmpeg history, which is not needed. The checkout should be limited to only the most recent files. This will save time and bandwidth for the end user. Developers can always check out the full ffmpeg history on their own. Use the --depth option to git clone like so:
git clone --depth 1 git://git.videolan.org/ffmpeg.git ffmpeg
Attached patch modifies the configure script to limit ffmpeg checkout to depth of 1.
Attachments (1)
Change History (2)
by , 14 years ago
Attachment: | configure-limit-ffmpeg-checkout.patch added |
---|
comment:1 by , 13 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
This patch was applied a long time ago.
patch configure to limit ffmpeg checkout