summary refs log tree commit diff
path: root/daemon.am
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 /daemon.am
parentd8eea3d2bce9c9e834210237090947de4600cfe8 (diff)
downloadguix-351782e2f1b1f82b91bbb2af0b9735c930645488.tar.gz
build: Add missing daemon header to the distribution.
* daemon.am (guix_daemon_headers): New variable.
  (noinst_HEADERS): Add it.
Diffstat (limited to 'daemon.am')
-rw-r--r--daemon.am5
1 files changed, 4 insertions, 1 deletions
diff --git a/daemon.am b/daemon.am
index 8c2c22dd88..b2c0e649eb 100644
--- a/daemon.am
+++ b/daemon.am
@@ -133,9 +133,12 @@ guix_daemon_LDADD =				\
   libstore.a libutil.a libformat.a -lbz2	\
   $(SQLITE3_LIBS) $(LIBGCRYPT_LIBS)
 
+guix_daemon_headers =				\
+  nix/nix-daemon/shared.hh
 
 noinst_HEADERS =						\
-  $(libformat_headers) $(libutil_headers) $(libstore_headers)
+  $(libformat_headers) $(libutil_headers) $(libstore_headers)	\
+  $(guix_daemon_headers)
 
 nix/libstore/schema.sql.hh: nix/libstore/schema.sql
 	$(GUILE) --no-auto-compile -c				\