summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-07-26 23:16:18 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-07-26 23:16:18 (GMT)
commit5cd3e305e3ef19f6009f3097a7b2ff98b2234bec (patch)
tree23f1b1c480e698082b691616780b0402064aac96 /configure.in
parent2a20f9be709a805e3af5d9cf5b4fe987b9db7c1c (diff)
downloadcpython-5cd3e305e3ef19f6009f3097a7b2ff98b2234bec.zip
cpython-5cd3e305e3ef19f6009f3097a7b2ff98b2234bec.tar.gz
cpython-5cd3e305e3ef19f6009f3097a7b2ff98b2234bec.tar.bz2
When testing for an hg repo, use a file that always exists, even with the "shared" extension
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 5a411fe..c4ad4e8 100644
--- a/configure.in
+++ b/configure.in
@@ -833,7 +833,7 @@ AC_SUBST(HGVERSION)
AC_SUBST(HGTAG)
AC_SUBST(HGBRANCH)
-if test -e $srcdir/.hg/00changelog.i
+if test -e $srcdir/.hg/dirstate
then
AC_CHECK_PROG(HAS_HG, hg, found, not-found)
else