From 1e39f0873393189278d92ac3589a329f42c8311c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Enrique=20Oca=C3=B1a=20Gonz=C3=A1lez?= Date: Thu, 28 Jul 2016 10:40:22 +0200 Subject: [PATCH] support/download/git: Fix compatibility issue with git older than 1.8.4 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The "--no-patch" option used by the git downloader appeared on git 1.8.4. Systems with older git versions show an error and fall back to the wget downloader, which isn't suitable for all the cases. Signed-off-by: Enrique Ocaña González Tested-by: Matthew Weber Tested-by: "Yann E. MORIN" Acked-by: "Yann E. MORIN" Signed-off-by: Peter Korsgaard --- support/download/git | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/download/git b/support/download/git index 663006b4d0..416cd1baf2 100755 --- a/support/download/git +++ b/support/download/git @@ -76,7 +76,7 @@ _git checkout -q "'${cset}'" # Get date of commit to generate a reproducible archive. # %cD is RFC2822, so it's fully qualified, with TZ and all. -date="$( _git show --no-patch --pretty=format:%cD )" +date="$( _git log -1 --pretty=format:%cD )" # There might be submodules, so fetch them. if [ ${recurse} -eq 1 ]; then -- 2.30.2