diff options
author | Hilko Bengen <bengen@hilluzination.de> | 2012-01-23 23:16:37 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2012-01-24 18:23:21 +0000 |
commit | 955b4a17969b45b5ff040961b913442e81af81ae (patch) | |
tree | 7b7a994aa7fdb7b35ada71fdcb0a783ae8a44b48 | |
parent | e26a87ebf37308e3daf667dae1a961a24750bd9d (diff) | |
download | libguestfs-955b4a17969b45b5ff040961b913442e81af81ae.tar.gz libguestfs-955b4a17969b45b5ff040961b913442e81af81ae.tar.xz libguestfs-955b4a17969b45b5ff040961b913442e81af81ae.zip |
Fix --{en,dis}able-install-daemon
This fixes...
configure: error: conditional "INSTALL_DAEMON" was never defined.
... when specifying --disable-daemon
(cherry picked from commit 22224254fa4676735985818d2ff3c8feafe4457c)
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 47daf4fe..d9e8149f 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]) |