This fixes...
configure: error: conditional "INSTALL_DAEMON" was never defined.
... when specifying --disable-daemon
---
configure.ac | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/configure.ac b/configure.ac
index 499b7a4..3e364b1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -263,9 +263,9 @@ if test "x$enable_daemon" = "xyes"; then
[enable installing the daemon under $sbindir
@<:@default=no@:>@])],
[],
[enable_install_daemon=no])
- AM_CONDITIONAL([INSTALL_DAEMON],[test "x$enable_install_daemon" =
"xyes"])
AC_MSG_RESULT([$enable_install_daemon])
fi
+AM_CONDITIONAL([INSTALL_DAEMON],[test "x$enable_install_daemon" =
"xyes"])
dnl Build the appliance?
AC_MSG_CHECKING([if we should build the appliance])
--
1.7.8.3