diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-08-20T16·33+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-08-20T16·33+0200 |
commit | f0610e28e8d4da86b90d10bfb85bbfc72219cf28 (patch) | |
tree | 3309197b2d0585c048f73a278ea225b1a9fe4ca6 | |
parent | 11849a320e4f522b97fcdf09ff0940496880475b (diff) |
Install config.h only once
-rw-r--r-- | local.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/local.mk b/local.mk index aaf8f548e1a4..d9e13a922c8b 100644 --- a/local.mk +++ b/local.mk @@ -10,4 +10,4 @@ GLOBAL_CXXFLAGS += -I . -I src -I src/libutil -I src/libstore -I src/libmain -I $(foreach i, config.h $(call rwildcard, src/lib*, *.hh), $(eval $(call install-file-in, $(i), $(includedir)/nix, 0644))) -$(foreach i, config.h $(call rwildcard, src/boost, *.hpp), $(eval $(call install-file-in, $(i), $(includedir)/nix/$(patsubst src/%/,%,$(dir $(i))), 0644))) +$(foreach i, $(call rwildcard, src/boost, *.hpp), $(eval $(call install-file-in, $(i), $(includedir)/nix/$(patsubst src/%/,%,$(dir $(i))), 0644))) |