diff options
Diffstat (limited to 'docs/aclocal.m4')
-rw-r--r-- | docs/aclocal.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/aclocal.m4 b/docs/aclocal.m4 index a1d85ef5c4..9ecbda5e6b 100644 --- a/docs/aclocal.m4 +++ b/docs/aclocal.m4 @@ -27,7 +27,7 @@ dnl arg2: program executable name dnl arg3: target that requires it AC_DEFUN(DOCS_TARGET_REQUIRE_PROGRAM, [ - AC_PATH_PROG([$1], [$2]) + AC_CHECK_PROGS([$1], [$2]) if test x"$$1" = x; then if test x"$$3_REQUIRES" = x; then $3_REQUIRES="$2" |