diff options
author | Michael Biebl <biebl@debian.org> | 2013-06-20 06:20:47 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-06-20 10:39:03 +0200 |
commit | f54691a246450c9d8437ddb1bf775b295e91352c (patch) | |
tree | 37c52044358ccd165c83b3c5c38e5e5621fa08e6 | |
parent | d0142f013ee27c72dc54d9677b53c5e462bac941 (diff) | |
download | rsyslog-f54691a246450c9d8437ddb1bf775b295e91352c.tar.gz rsyslog-f54691a246450c9d8437ddb1bf775b295e91352c.tar.bz2 rsyslog-f54691a246450c9d8437ddb1bf775b295e91352c.zip |
Add missing test
Fixes
./configure: line 18474: xno: command not found
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index bb0de0c6..a62bc687 100644 --- a/configure.ac +++ b/configure.ac @@ -1008,7 +1008,7 @@ AC_ARG_ENABLE(cached_man_pages, if test "x$enable_cached_man_pages" = "xno"; then # obtain path for rst2man if test "x$enable_libgcrypt" = "xyes" || \ - "x$enable_guardtime" = "xyes"; then + test "x$enable_guardtime" = "xyes"; then AC_PATH_PROG([RST2MAN], [rst2man]) if test "x${RST2MAN}" == "x"; then AC_MSG_FAILURE([rst2man not found in PATH]) |