Meta/Make: make it easier to test bootstrapping

todo
Junio C Hamano 2008-07-26 00:44:24 -07:00
parent 8500e03bb7
commit 37911d1377
1 changed files with 8 additions and 1 deletions

9
Make
View File

@ -4,7 +4,14 @@
# PATH=/usr/bin:/bin

G=/opt/packrat/playpen/public/in-place/git/index/gitweb_config.perl
GIT=$HOME/git-master/bin/git
for i in active maint master next
do
GIT="$HOME/git-$i/bin/git"
test -f "$GIT" && break
done
test -f "$GIT" || {
echo >&2 "No git to bootstrap"
}
PATH=/usr/bin:/bin
LANG=C
LC_ALL=C