summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbderrahim Kitouni <akitouni@gnome.org>2022-01-05 18:49:48 +0100
committerAbderrahim Kitouni <akitouni@gnome.org>2022-01-05 18:49:48 +0100
commit1dd102822a48604c2bb3c0d8d2ca1c5c6967ff1b (patch)
treec84691a700e61464b113bda0e7551fcc69ebb968
parentfee46f6548455e0eae31e0d0a5adeb7c73b5e2e7 (diff)
downloadlibrsvg-abderrahim/rst2man.tar.gz
Check for both rst2man and rst2man.py in configure.acabderrahim/rst2man
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 3c6178d4..a007dda2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -114,7 +114,7 @@ AX_COMPARE_VERSION([$rust_version],[lt],[$MINIMUM_RUST_VER], [
dnl Man page generator
-AC_CHECK_TOOL(RST2MAN, [rst2man], [no])
+AC_CHECK_PROGS(RST2MAN, [rst2man rst2man.py], [no])
AS_IF(test x$RST2MAN = xno,
AC_MSG_ERROR([rst2man is required. Please install python3-docutils.])
)