On Apr 15, 2008, at 11:29 PM, Pierre d'Herbemont wrote:
>
> What does `which git` reports?
and `git help` too?
bootstrap does:
if git help >/dev/null 2>&1; then
echo "GIT = `which git`" >> config.mak
else
echo "You do not have a Git client in your PATH." >&2
fi
Pierre.