diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-02-03 18:04:09 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-02-03 18:04:09 +0100 |
commit | 0a4e911cf478d0d38082a8840a5acc8f57d00086 (patch) | |
tree | 8ca201a7bed39df0aad96209a3f04c66d79bbbbf /local.mk | |
parent | a2628b43bbfe4368a3b5963e8b80eb6f463d94c3 (diff) |
Install headers in the correct location
Diffstat (limited to 'local.mk')
-rw-r--r-- | local.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ clean-files += Makefile.config GLOBAL_CXXFLAGS += -I . -I src -I src/libutil -I src/libstore -I src/libmain -I src/libexpr -I src/nix -Wno-deprecated-declarations -$(foreach i, config.h $(call rwildcard, src/lib*, *.hh), \ +$(foreach i, config.h $(wildcard src/lib*/*.hh), \ $(eval $(call install-file-in, $(i), $(includedir)/nix, 0644))) $(GCH) $(PCH): src/libutil/util.hh config.h |