From 22224254fa4676735985818d2ff3c8feafe4457c Mon Sep 17 00:00:00 2001 From: Hilko Bengen Date: Mon, 23 Jan 2012 23:16:37 +0100 Subject: Fix --{en,dis}able-install-daemon This fixes... configure: error: conditional "INSTALL_DAEMON" was never defined. ... when specifying --disable-daemon --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 499b7a45..3e364b12 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]) -- cgit