diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-12-06 00:04:00 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-12-06 00:07:17 +0100 |
commit | 351782e2f1b1f82b91bbb2af0b9735c930645488 (patch) | |
tree | 5ef7b6fa6906d4b0dd6930310b68b59e987659ca /daemon.am | |
parent | d8eea3d2bce9c9e834210237090947de4600cfe8 (diff) | |
download | guix-351782e2f1b1f82b91bbb2af0b9735c930645488.tar guix-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.am | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 \ |