<div dir="ltr">LGTM<br></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Feb 19, 2015 at 5:03 PM, Jérémy Carrier <span dir="ltr"><<a href="mailto:carrier.jerem@free.fr" target="_blank">carrier.jerem@free.fr</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br>
<br>
I encounter a lot of troubles since the last few days to compile libvlc for x86.<br>
As the compilation process is very long, I would suggest this slight modification if possible.<br>
It fetches the last commit only on each contrib repository, allowing faster download, and thus, faster compilation.<br>
The following patch applies to the vlc repository.<br>
<br>
This is my first patch-email ever, sorry if by any chance, I outbroke any custom.<br>
<br>
BR<br>
Jeremy<br>
<br>
---<br>
<br>
Commit message:<br>
<br>
Fetch the last commit only for each contrib repository.<br>
Drop the whole commits tree.<br>
Speed up download process.<br>
<br>
diff --git a/contrib/src/main.mak b/contrib/src/main.mak<br>
index fdeeba9..a3b98c0 100644<br>
--- a/contrib/src/main.mak<br>
+++ b/contrib/src/main.mak<br>
@@ -296,7 +296,7 @@ HOSTVARS_PIC := $(HOSTTOOLS) \<br>
<br>
 download_git = \<br>
        rm -Rf $(@:.tar.xz=) && \<br>
-       $(GIT) clone $(2:%=--branch %) $(1) $(@:.tar.xz=) && \<br>
+       $(GIT) clone --depth 1 $(2:%=--branch %) $(1) $(@:.tar.xz=) && \<br>
        (cd $(@:.tar.xz=) && $(GIT) checkout $(3:%= %)) && \<br>
        rm -Rf $(@:%.tar.xz=%)/.git && \<br>
        (cd $(dir $@) && \<br>
<br>
______________________________<u></u>_________________<br>
Android mailing list<br>
<a href="mailto:Android@videolan.org" target="_blank">Android@videolan.org</a><br>
<a href="https://mailman.videolan.org/listinfo/android" target="_blank">https://mailman.videolan.org/<u></u>listinfo/android</a><br>
</blockquote></div><br></div>