summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2019-05-19 14:40:08 -0700
committerKevin McCarthy <kevin@8t8.us>2019-05-19 15:14:38 -0700
commit0e78280a876f1b1972ca17922cde2d8c5c309a61 (patch)
tree1bae4c2586e7ca1932396db11caac397fa3d02db /configure.ac
parent7bef99de54fe39ab4d823845a80d3cc958f4974e (diff)
Adjust docbook2texi program search.
Look for db2x_docbook2texi first, because Fedora/Red Hat has their own version of "docbook2texi": db2x_docbook2texi. I'm not sure what to do if they have don't have that installed but have docbook2texi installed, since this is a terrible name collision. Thanks to Moritz Barsnick for pointing out the different binary (and package) names on Fedora.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 9b355e7c..fc1aca6c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1566,7 +1566,7 @@ then
fi
AC_SUBST(DSLROOT)
-AC_PATH_PROGS([DB2XTEXI], [docbook2x-texi docbook2texi], [none])
+AC_PATH_PROGS([DB2XTEXI], [docbook2x-texi db2x_docbook2texi docbook2texi], [none])
if test "$DB2XTEXI" != "none"; then
AC_PATH_PROG([MAKEINFO], [makeinfo], [none])
if test "$MAKEINFO" != "none"; then