From e37963413ebb4f904fa974b9abade3119ec12082 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Tue, 12 Apr 2011 12:52:30 +0100 Subject: [PATCH 1/6] configure.ac: fix check for xsltproc Pre-setting XSLTPROC interferes with AC_CHECK_PROGS letting the user override choice of program via the environment. --- configure.ac | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 075b583..a77c0ee 100644 --- a/configure.ac +++ b/configure.ac @@ -1351,9 +1351,8 @@ fi AM_CONDITIONAL(DBUS_DOXYGEN_DOCS_ENABLED, test x$enable_doxygen_docs = xyes) AC_MSG_RESULT($enable_doxygen_docs) -XSLTPROC=false AC_CHECK_PROGS([XSLTPROC], [xsltproc]) -AM_CONDITIONAL(DBUS_HAVE_XSLTPROC, test "$XSLTPROC" != false) +AM_CONDITIONAL([DBUS_HAVE_XSLTPROC], [test "x$XSLTPROC" != "x"]) ### XML Documentation -- 1.7.4.1