1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-25 06:31:14 +02:00

Install headers in the correct location

This commit is contained in:
Eelco Dolstra 2020-02-03 18:04:09 +01:00
parent a2628b43bb
commit 0a4e911cf4
3 changed files with 10 additions and 1 deletions

View file

@ -60,3 +60,9 @@ $(d)/build.cc:
clean-files += $(d)/schema.sql.gen.hh
$(eval $(call install-file-in, $(d)/nix-store.pc, $(prefix)/lib/pkgconfig, 0644))
$(foreach i, $(wildcard src/libstore/builtins/*.hh), \
$(eval $(call install-file-in, $(i), $(includedir)/nix/builtins, 0644)))
$(foreach i, $(wildcard src/libstore/fetchers/*.hh), \
$(eval $(call install-file-in, $(i), $(includedir)/nix/fetchers, 0644)))