mirror of
https://github.com/NixOS/nix.git
synced 2025-11-12 05:26:02 +01:00
fix(libstore/find-cycles): install header in public include directory
Move `find-cycles.hh` to `src/libstore/include/nix/store/build/` to ensure it is properly installed as a public header and can be used by tests and other consumers of the library.
This commit is contained in:
parent
908469badb
commit
eea31494c1
4 changed files with 3 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
#include "find-cycles.hh"
|
#include "nix/store/build/find-cycles.hh"
|
||||||
|
|
||||||
#include "nix/store/store-api.hh"
|
#include "nix/store/store-api.hh"
|
||||||
#include "nix/util/file-system.hh"
|
#include "nix/util/file-system.hh"
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,7 @@ headers = [ config_pub_h ] + files(
|
||||||
'build/derivation-resolution-goal.hh',
|
'build/derivation-resolution-goal.hh',
|
||||||
'build/derivation-trampoline-goal.hh',
|
'build/derivation-trampoline-goal.hh',
|
||||||
'build/drv-output-substitution-goal.hh',
|
'build/drv-output-substitution-goal.hh',
|
||||||
|
'build/find-cycles.hh',
|
||||||
'build/goal.hh',
|
'build/goal.hh',
|
||||||
'build/substitution-goal.hh',
|
'build/substitution-goal.hh',
|
||||||
'build/worker.hh',
|
'build/worker.hh',
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@
|
||||||
|
|
||||||
#include "store-config-private.hh"
|
#include "store-config-private.hh"
|
||||||
#include "build/derivation-check.hh"
|
#include "build/derivation-check.hh"
|
||||||
#include "build/find-cycles.hh"
|
#include "nix/store/build/find-cycles.hh"
|
||||||
|
|
||||||
#if NIX_WITH_AWS_AUTH
|
#if NIX_WITH_AWS_AUTH
|
||||||
# include "nix/store/aws-creds.hh"
|
# include "nix/store/aws-creds.hh"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue