From: Yann E. MORIN Date: Sun, 8 Apr 2018 15:48:11 +0000 (+0200) Subject: download/git: don't require too-recent git X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e17719264b;p=buildroot.git download/git: don't require too-recent git git has supported -C only since 1.8.5, and some distros have not yet caught up after more than 4 years... Fall back to entering the directory. Fixes: http://autobuild.buildroot.net/results/35f9f7a4adc6c2cad741079e4afdf1408c94703b Reported-by: André Hentschel Signed-off-by: "Yann E. MORIN" Cc: Maxime Hadjinlian Cc: André Hentschel Signed-off-by: Peter Korsgaard --- diff --git a/support/download/git b/support/download/git index 787b6bcca0..868dfad0dd 100755 --- a/support/download/git +++ b/support/download/git @@ -47,7 +47,9 @@ git_cache="${dl_dir}/git" # fetch'ed later. if [ ! -d "${git_cache}" ]; then _git init "'${git_cache}'" - _git -C "'${git_cache}'" remote add origin "'${uri}'" + pushd "${git_cache}" >/dev/null + _git remote add origin "'${uri}'" + popd >/dev/null fi pushd "${git_cache}" >/dev/null