summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2012-12-13 00:27:27 +0100
committerLudovic Courtès <ludo@gnu.org>2012-12-13 00:27:27 +0100
commitc9b70836d080150046633edc782fdaaff9fc6d9c (patch)
treef85362edfa87fbdb65b5f4756da2e3b0cca3341e /configure.ac
parent3a61f8017a11c2a482faef58861d7dc1d37a082e (diff)
downloadguix-c9b70836d080150046633edc782fdaaff9fc6d9c.tar.gz
guix-c9b70836d080150046633edc782fdaaff9fc6d9c.tar.xz
build: Make `--enable-daemon' the default.
* configure.ac: Have $guix_build_daemon default to "yes".
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 0ea216e9d5..bebb9885c4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -31,9 +31,9 @@ AC_ARG_WITH(store-dir,
AC_SUBST(storedir)
AC_ARG_ENABLE([daemon],
- [AS_HELP_STRING([--enable-daemon], [build the Nix daemon (C++)])],
+ [AS_HELP_STRING([--disable-daemon], [build the Nix daemon (C++)])],
[guix_build_daemon="$enableval"],
- [guix_build_daemon="no"])
+ [guix_build_daemon="yes"])
# Prepare a version of $localstatedir that does not contain references
# to shell variables.