From patchwork Thu Feb 7 23:54:22 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [WR,1/2] Require git 1.7.7 Date: Thu, 07 Feb 2013 23:54:22 -0000 From: Mark Hatle X-Patchwork-Id: 44261 Message-Id: <1360281263-23608-2-git-send-email-mark.hatle@windriver.com> To: From: Jeff Polk Due to some unique processes that we use, outside of OE-Core, we need to mandate git 1.7.7 as the older allowed version. This version contains a fix that correctly handles reference clones which we use for our RCPL updates. Signed-off-by: Jeff Polk Signed-off-by: Mark Hatle --- scripts/bitbake | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/scripts/bitbake b/scripts/bitbake index 79a81ea..568a998 100755 --- a/scripts/bitbake +++ b/scripts/bitbake @@ -73,7 +73,8 @@ version_compare() { float_test "$TARVERSION > 1.23" && needtar="0" # Need git >= 1.7.5 for git-remote --mirror=xxx syntax -version_compare $GITVERSION ">=" 1.7.5 && needgit="0" +# WR: need git >= 1.7.7 for correct alternates handling +version_compare $GITVERSION ">=" 1.7.7 && needgit="0" buildpseudo="1"