diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-04-03 19:12:32 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-04-03 19:12:32 (GMT) |
commit | ff6002304885cdbcb5d4cce3dc30387d2e3fc590 (patch) | |
tree | 6a6167620841fb5adea29557982780287517d6e8 /configure.in | |
parent | 739281148d33f69ea51a97b92406c9b043d739d5 (diff) | |
download | cpython-ff6002304885cdbcb5d4cce3dc30387d2e3fc590.zip cpython-ff6002304885cdbcb5d4cce3dc30387d2e3fc590.tar.gz cpython-ff6002304885cdbcb5d4cce3dc30387d2e3fc590.tar.bz2 |
Set "not found" value for svnversion to not-found. Fixes #1463559.
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 a8b91d6..12ac149 100644 --- a/configure.in +++ b/configure.in @@ -621,7 +621,7 @@ AC_SUBST(AR) AC_CHECK_PROGS(AR, ar aal, ar) AC_SUBST(SVNVERSION) -AC_CHECK_PROG(SVNVERSION, svnversion, found) +AC_CHECK_PROG(SVNVERSION, svnversion, found, not-found) if test $SVNVERSION = found then SVNVERSION="svnversion \$(srcdir)" |