summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2012-12-06 00:04:00 +0100
committerLudovic Courtès <ludo@gnu.org>2012-12-06 00:07:17 +0100
commit351782e2f1b1f82b91bbb2af0b9735c930645488 (patch)
tree5ef7b6fa6906d4b0dd6930310b68b59e987659ca
parentd8eea3d2bce9c9e834210237090947de4600cfe8 (diff)
build: Add missing daemon header to the distribution.
* daemon.am (guix_daemon_headers): New variable. (noinst_HEADERS): Add it.
-rw-r--r--daemon.am5
1 files changed, 4 insertions, 1 deletions
diff --git a/daemon.am b/daemon.am
index 8c2c22dd887..b2c0e649eb9 100644
--- a/daemon.am
+++ b/daemon.am
@@ -133,9 +133,12 @@ guix_daemon_LDADD = \
133 libstore.a libutil.a libformat.a -lbz2 \ 133 libstore.a libutil.a libformat.a -lbz2 \
134 $(SQLITE3_LIBS) $(LIBGCRYPT_LIBS) 134 $(SQLITE3_LIBS) $(LIBGCRYPT_LIBS)
135 135
136guix_daemon_headers = \
137 nix/nix-daemon/shared.hh
136 138
137noinst_HEADERS = \ 139noinst_HEADERS = \
138 $(libformat_headers) $(libutil_headers) $(libstore_headers) 140 $(libformat_headers) $(libutil_headers) $(libstore_headers) \
141 $(guix_daemon_headers)
139 142
140nix/libstore/schema.sql.hh: nix/libstore/schema.sql 143nix/libstore/schema.sql.hh: nix/libstore/schema.sql
141 $(GUILE) --no-auto-compile -c \ 144 $(GUILE) --no-auto-compile -c \