summaryrefslogtreecommitdiff
path: root/daemon.am
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2014-01-18 16:48:29 +0100
committerLudovic Courtès <ludo@gnu.org>2014-01-18 22:32:50 +0100
commitd43eb499a6c112af609118803c6cd33fbcedfa43 (patch)
tree666deede607f0d64ad1266a60317bd6a2ee48a2c /daemon.am
parentb97c95eb3c4894bbbe7b645b163147e3f837e754 (diff)
Update 'nix-upstream' sub-module; adjust build system, doc, and substituter.
* nix-upstream: Update sub-module. * daemon.am (libutil_a_SOURCES): Add affinity.cc. (libutil_headers): Add affinity.hh. (libexec_PROGRAMS, nix_setuid_helper_SOURCES, nix_setuid_helper_CPPFLAGS, nix_setuid_helper_LDADD): Remove. * doc/guix.texi (Setting Up the Daemon): Remove paragraph about 'nix-setuid-helper'. * guix/scripts/substitute-binary.scm (guix-substitute-binary): Exit 0 when %CACHE-URL has an HTTP scheme and looking up its host fails. Always print a newline to stdout when starting.
Diffstat (limited to 'daemon.am')
-rw-r--r--daemon.am14
1 files changed, 3 insertions, 11 deletions
diff --git a/daemon.am b/daemon.am
index 60bbaf73ede..f4700f0b071 100644
--- a/daemon.am
+++ b/daemon.am
@@ -1,5 +1,5 @@
1# GNU Guix --- Functional package management for GNU 1# GNU Guix --- Functional package management for GNU
2# Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org> 2# Copyright © 2012, 2013, 2014 Ludovic Courtès <ludo@gnu.org>
3# 3#
4# This file is part of GNU Guix. 4# This file is part of GNU Guix.
5# 5#
@@ -56,6 +56,7 @@ libformat_a_CPPFLAGS = \
56 56
57libutil_a_SOURCES = \ 57libutil_a_SOURCES = \
58 nix/libutil/archive.cc \ 58 nix/libutil/archive.cc \
59 nix/libutil/affinity.cc \
59 nix/libutil/serialise.cc \ 60 nix/libutil/serialise.cc \
60 nix/libutil/util.cc \ 61 nix/libutil/util.cc \
61 nix/libutil/xml-writer.cc \ 62 nix/libutil/xml-writer.cc \
@@ -63,6 +64,7 @@ libutil_a_SOURCES = \
63 nix/libutil/gcrypt-hash.cc 64 nix/libutil/gcrypt-hash.cc
64 65
65libutil_headers = \ 66libutil_headers = \
67 nix/libutil/affinity.hh \
66 nix/libutil/hash.hh \ 68 nix/libutil/hash.hh \
67 nix/libutil/serialise.hh \ 69 nix/libutil/serialise.hh \
68 nix/libutil/xml-writer.hh \ 70 nix/libutil/xml-writer.hh \
@@ -153,16 +155,6 @@ guix_register_LDADD = \
153 $(SQLITE3_LIBS) $(LIBGCRYPT_LIBS) 155 $(SQLITE3_LIBS) $(LIBGCRYPT_LIBS)
154 156
155 157
156libexec_PROGRAMS = nix-setuid-helper
157nix_setuid_helper_SOURCES = \
158 nix/nix-setuid-helper/nix-setuid-helper.cc
159
160nix_setuid_helper_CPPFLAGS = \
161 $(libutil_a_CPPFLAGS)
162
163nix_setuid_helper_LDADD = \
164 libutil.a libformat.a
165
166noinst_HEADERS = \ 158noinst_HEADERS = \
167 $(libformat_headers) $(libutil_headers) $(libstore_headers) \ 159 $(libformat_headers) $(libutil_headers) $(libstore_headers) \
168 $(guix_daemon_headers) 160 $(guix_daemon_headers)