5 case "$(git version 2>/dev/null)" in
9 echo >&2 "No git to bootstrap"
18 probed
=${p%/git-active/bin}
19 if test "$probed" != "$p"
29 old_style_def_fix
=b79d18c92d9f4841a6a1a29b7b2373a8ff9871e1
33 for cv
in PYTHON_PATH
=python TCL_PATH
=tclsh TCLTKPATH
=wish
38 if test -f "/usr/bin/$cmd"
42 for p
in /usr
/bin
/usr
/local
/bin
46 echo "$var=$p/$cmd; export $var"
49 found
=$
(find "$p/$cmd"* -type f
2>/dev
/null |
head -n 1)
52 echo "$var=$found; export $var"
59 Wall
='-Wall -Wdeclaration-after-statement' tests
= jobs= skip
= oldtest
=
66 OLD_ICONV
=YesPlease
; export OLD_ICONV
70 NEEDS_CRYPTO_WITH_SSL
=YesPlease
; export NEEDS_CRYPTO_WITH_SSL
71 NO_PEDANTIC
=CannotDo Wall
=
75 while case $# in 0) break ;; esac
78 -pedantic |
--pedantic)
80 rev=$
($GIT rev-parse HEAD
) &&
81 case "$($GIT merge-base "$old_style_def_fix" "$rev")" in
83 o
=-Wold-style-definition ;;
85 case "$NO_PEDANTIC" in
88 O
="$O -Werror $o -std=c99 -Wno-pointer-to-int-cast"
89 O
="$O -Wpointer-arith -Woverflow -Wunused"
93 # O="$O -fwrapv -fno-strict-overflow"
101 -noprove |
--noprove)
134 if test -z "$tests" && test -n "$skip"
136 : GIT_SKIP_TESTS
="${GIT_SKIP_TESTS:-$skip}"
138 if test -z "$oldtest" &&
139 sh
-c 'prove --version >/dev/null 2>&1' &&
140 sh
-c 'prove --exec : >/dev/null 2>&1'
142 DEFAULT_TEST_TARGET
=prove GIT_PROVE_OPTS
="$jobs"
143 export DEFAULT_TEST_TARGET GIT_PROVE_OPTS
149 head=`$GIT symbolic-ref HEAD 2>/dev/null` &&
150 branch
=`expr "$head" : 'refs/heads/\(.*\)'` || branch
=detached
153 next | maint | master | pu | jch
)
154 prefix
="$inst_prefix/git-$branch"
157 v
=`$GIT describe HEAD`
158 expr "$v" : '.*-g[0-9a-f]*$' >/dev
/null
&& {
159 echo >&2 "You are on 'snap' but $v is not an official version."
162 prefix
="$inst_prefix/git-snap-$v"
165 prefix
="$inst_prefix/git-test" ;;
169 sh
-c 'git describe --abbrev=4 HEAD' >/dev
/null
2>&1 ||
{
170 $GIT describe
--abbrev=4 HEAD |
sed -e 's/-/./g' >version
174 MAN_BASE_URL="http://www.kernel.org/pub/software/scm/git/docs/"
175 ASCIIDOC_NO_ROFF=YesPlease
181 if test -z "${make:+set}" && {
182 test -x /usr
/local
/bin
/gmake ||
183 test -x /usr
/bin
/gmake
188 if test -f /bin
/ginstall
190 set INSTALL
=ginstall
"$@"
195 if test -n "${NO_CFLAGS+set}"
197 unset OK_TO_USE_CFLAGS
201 ETC_GITCONFIG
=$prefix/etc
/gitconfig \
202 ${OK_TO_USE_CFLAGS+"CFLAGS=$CFLAGS"} \
203 ${tests:+"T=$tests"} \