From 7fab23e237b36a7ca2df6f34eb5febe4c851db42 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 7 Feb 2014 17:15:00 +0100 Subject: [PATCH] Install header files --- Makefile.config.in | 1 + local.mk | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Makefile.config.in b/Makefile.config.in index f5f813b2c0..5524ea3ad8 100644 --- a/Makefile.config.in +++ b/Makefile.config.in @@ -17,6 +17,7 @@ docbookrng = @docbookrng@ docbookxsl = @docbookxsl@ docdir = @docdir@ exec_prefix = @exec_prefix@ +includedir = @includedir@ libdir = @libdir@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ diff --git a/local.mk b/local.mk index 5cdba4d332..318710479c 100644 --- a/local.mk +++ b/local.mk @@ -5,3 +5,5 @@ endif dist-files += configure config.h.in nix.spec GLOBAL_CXXFLAGS += -I . -I src -I src/libutil -I src/libstore -I src/libmain -I src/libexpr + +$(foreach i, config.h $(call rwildcard, src/lib*, *.hh), $(eval $(call install-file-in, $(i), $(includedir)/nix, 0644)))