Skip to content

Commit

Permalink
buildsys: Detect rst2man3
Browse files Browse the repository at this point in the history
mingw-w64-{i686,x86_64}-python3-docutils packages in MSYS2 provide
rst2man3 and rst2man3.py commands instead of rst2man.  Detect them.
  • Loading branch information
k-takata committed May 30, 2017
1 parent 4146b4e commit 57c3e1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ AC_SYS_LARGEFILE
AC_CHECK_PROGS([perl_found], [perl], [yes], [no])
AM_CONDITIONAL([RUN_OPTLIB2C], [test "${perl_found}" = "yes"])

AC_PATH_PROGS(RST2MAN, [rst2man rst2man.py], [no])
AC_PATH_PROGS(RST2MAN, [rst2man rst2man.py rst2man3 rst2man3.py], [no])
AM_CONDITIONAL([HAVE_RST2MAN], [test "x$RST2MAN" != "xno"])

# Checks for operating environment
Expand Down

0 comments on commit 57c3e1e

Please sign in to comment.