From: Kevin McCarthy Date: Sun, 19 May 2019 21:40:08 +0000 (-0700) Subject: Adjust docbook2texi program search. X-Git-Tag: mutt-1-12-rel~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0e78280a876f1b1972ca17922cde2d8c5c309a61;p=mutt 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. --- 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