diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2010-08-02 15:35:46 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2010-08-04 07:55:38 +1000 |
commit | 24da86e6a0a0f6753f943c998f53b225f5d24b02 (patch) | |
tree | cb832dad31ad625571ae701ee2d1abb98ef11238 | |
parent | 41c7b9513342c10c2a5ad17fa2cde7c2aa91042b (diff) |
Fix broken cherry-pick for doctools check.
Cherry-pick d7d8a9e4fc37ab0f865e74ea1871617a3b542906 conflict resolve was
broken. Test was inverted, reports "not found" when found and the other way
round.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
Tested-by: Jeremy Huddleston <jeremyhu@apple.com>
Tested-by: Gaetan Nadon <gaetan.nadon@videotron.ca>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index baf10f8..35a9ebd 100644 --- a/configure.ac +++ b/configure.ac @@ -30,7 +30,7 @@ AC_ARG_VAR([XMLTO], [Path to xmlto command]) AC_PATH_PROG([XMLTO], [xmlto]) AC_ARG_VAR([ASCIIDOC], [Path to asciidoc command]) AC_PATH_PROG([ASCIIDOC], [asciidoc]) -if test "x$XMLTO" = "x" && test "x$ASCIIDOC" = "x"; then +if test "x$XMLTO" != "x" && test "x$ASCIIDOC" != "x"; then have_doctools=yes else have_doctools=no |