From e0235ddd2b74faccb752c4d036bb2e72063e9a35 Mon Sep 17 00:00:00 2001 From: David Herrmann Date: Fri, 15 Mar 2013 16:10:07 +0100 Subject: [PATCH] build: mark XSLTPROC with AC_ARG_VAR This allows changing the path to XSLTPROC via the command-line option if it cannot be found by autoconf. Signed-off-by: David Herrmann --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index 743957d..ac942b8 100644 --- a/configure.ac +++ b/configure.ac @@ -755,6 +755,7 @@ if test x$have_gbm = xyes ; then fi # check for xsltproc +AC_ARG_VAR([XSLTPROC], [xsltproc program]) AC_PATH_PROG(XSLTPROC, xsltproc) AM_CONDITIONAL([BUILD_HAVE_XSLTPROC], [test "x$XSLTPROC" != "x"])