From: dana koch Date: Sat, 15 Feb 2014 10:46:55 +0000 (+1100) Subject: Enveigle configure to look for a2x.py as well as a2x. X-Git-Tag: tor-0.2.4.21~5^2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a496010642c29018b5141991683a7d93dcf7d117;p=thirdparty%2Ftor.git Enveigle configure to look for a2x.py as well as a2x. It's not guaranteed that every package symlinks a2x to a2x.py; OpenBSD does not do this, so let's just look for a2x.py as well. --- diff --git a/configure.ac b/configure.ac index 6f40ac4ad2..211d34c099 100644 --- a/configure.ac +++ b/configure.ac @@ -167,7 +167,7 @@ AC_CHECK_PROG([SED],[sed],[sed],[/bin/false]) dnl check for asciidoc and a2x AC_PATH_PROG([ASCIIDOC], [asciidoc], none) -AC_PATH_PROG([A2X], [a2x], none) +AC_PATH_PROGS([A2X], [a2x, a2x.py], none) AM_CONDITIONAL(USE_ASCIIDOC, test x$asciidoc = xtrue)