summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-03-26 14:59:54 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2012-03-26 14:59:54 -0500
commit2558f5bf60de6e1212a5d35a93ed36bd6befa9c6 (patch)
tree2d21484a343e1dd6e5496a3a42959b957cfff609
parenteb886af35eccf31b370f56bd3d901e9804859e06 (diff)
downloadadmin-2558f5bf60de6e1212a5d35a93ed36bd6befa9c6.tar.gz
admin-2558f5bf60de6e1212a5d35a93ed36bd6befa9c6.zip
Fix test for PDF export support.
-rw-r--r--acinclude.m4.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4.in b/acinclude.m4.in
index da6cb55..12b8daa 100644
--- a/acinclude.m4.in
+++ b/acinclude.m4.in
@@ -6755,7 +6755,7 @@ AC_DEFUN([AC_PDF_GENERATION], [
AC_CHECK_PROG(found_recode, recode, yes, no)
AC_CHECK_PROG(found_html2ps, html2ps, yes, no)
AC_CHECK_PROG(found_ps2pdf, ps2pdf, yes, no)
- if test "x$found_recode" != "xyes" -o "x$found_html2ps" != "xyes" -o "x$found_ps2pdf" != "xyes"; then
+ if test "x$found_recode" != "xyes" && "x$found_html2ps" != "xyes" && "x$found_ps2pdf" != "xyes"; then
if test "x$enable_pdfdocs" = "xyes"; then
AC_MSG_ERROR(At least one of the tools for PDF generation is missing)
fi