diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-12-12 21:49:51 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-12-12 21:49:51 -0800 |
commit | 0d181cbb8adbc964a075fd71148415f6bd431272 (patch) | |
tree | 85a5449dc22d7e5adcf504f7199f6e58d0ebaac8 /configure.ac | |
parent | 73fd7f3761eeef0e28bbf04727c8a1e751a9792e (diff) | |
parent | 79c461d5b1139afa3d3997c7ef9ee521562b2a1a (diff) | |
download | git-0d181cbb8adbc964a075fd71148415f6bd431272.tar.gz |
Merge branch 'jk/asciidoc-update'
* jk/asciidoc-update:
docs: default to more modern toolset
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index 33dd46262b..5792425a49 100644 --- a/configure.ac +++ b/configure.ac @@ -398,21 +398,21 @@ if test -n "$ASCIIDOC"; then AC_MSG_CHECKING([for asciidoc version]) asciidoc_version=`$ASCIIDOC --version 2>/dev/null` case "${asciidoc_version}" in - asciidoc' '8*) - ASCIIDOC8=YesPlease + asciidoc' '7*) + ASCIIDOC7=YesPlease AC_MSG_RESULT([${asciidoc_version} > 7]) ;; - asciidoc' '7*) - ASCIIDOC8= + asciidoc' '8*) + ASCIIDOC7= AC_MSG_RESULT([${asciidoc_version}]) ;; *) - ASCIIDOC8= + ASCIIDOC7= AC_MSG_RESULT([${asciidoc_version} (unknown)]) ;; esac fi -AC_SUBST(ASCIIDOC8) +AC_SUBST(ASCIIDOC7) ## Checks for libraries. |