diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2016-11-06 18:01:54 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2017-09-05 20:57:12 +0200 |
commit | a4c1e99ed95c5032f8e6201fb7bcf1692f9c92c8 (patch) | |
tree | fedcd5926f8f74716904ed8cfac666d0c1ebe499 /configure.ac | |
parent | 514c2f480643c3481498b4a3ad32d6e6351260ff (diff) | |
download | patches-a4c1e99ed95c5032f8e6201fb7bcf1692f9c92c8.tar patches-a4c1e99ed95c5032f8e6201fb7bcf1692f9c92c8.tar.gz |
build: Negate ‘--disable-daemon’ help string.
This is a follow-up to commit c9b70836d080150046633edc782fdaaff9fc6d9c.
* configure.ac: Make ‘--disable-daemon’'s help text consistent with others.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 9ad7598f8b..5120df53fd 100644 --- a/configure.ac +++ b/configure.ac @@ -52,7 +52,7 @@ AC_MSG_CHECKING([for the store directory]) AC_MSG_RESULT([$storedir]) AC_ARG_ENABLE([daemon], - [AS_HELP_STRING([--disable-daemon], [build the Nix daemon (C++)])], + [AS_HELP_STRING([--disable-daemon], [do not build the Nix daemon (C++)])], [guix_build_daemon="$enableval"], [guix_build_daemon="yes"]) |