diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-07-26 23:16:18 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-07-26 23:16:18 (GMT) |
commit | 5cd3e305e3ef19f6009f3097a7b2ff98b2234bec (patch) | |
tree | 23f1b1c480e698082b691616780b0402064aac96 /configure.in | |
parent | 2a20f9be709a805e3af5d9cf5b4fe987b9db7c1c (diff) | |
download | cpython-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.in | 2 |
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 |