mirror of https://github.com/python/cpython
bpo-30232: Support Git worktree in configure.ac (#1391)
Don't test if .git/HEAD file exists, but only if the .git file (or directory) exists.
This commit is contained in:
parent
094909ad69
commit
5facdbb291
|
@ -29,7 +29,7 @@ AC_SUBST(GITVERSION)
|
|||
AC_SUBST(GITTAG)
|
||||
AC_SUBST(GITBRANCH)
|
||||
|
||||
if test -e $srcdir/.git/HEAD
|
||||
if test -e $srcdir/.git
|
||||
then
|
||||
AC_CHECK_PROG(HAS_GIT, git, found, not-found)
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue