diff options
author | Hilko Bengen <bengen@hilluzination.de> | 2012-01-23 23:16:37 +0100 |
---|---|---|
committer | Hilko Bengen <bengen@hilluzination.de> | 2012-01-23 23:16:37 +0100 |
commit | 22224254fa4676735985818d2ff3c8feafe4457c (patch) | |
tree | f4a728a739df536d963405ea2fd94a62a038d502 | |
parent | 734b1f662f4e563cc8baad3aca8cf751314e0e49 (diff) | |
download | libguestfs-22224254fa4676735985818d2ff3c8feafe4457c.tar.gz libguestfs-22224254fa4676735985818d2ff3c8feafe4457c.tar.xz libguestfs-22224254fa4676735985818d2ff3c8feafe4457c.zip |
Fix --{en,dis}able-install-daemon
This fixes...
configure: error: conditional "INSTALL_DAEMON" was never defined.
... when specifying --disable-daemon
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
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]) |