diff options
author | eldritch horrors <pennae@lix.systems> | 2024-03-04 05:17:31 +0100 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-03-04 05:17:31 +0100 |
commit | 622b0e9428d9ce8587bce3f7e0e896d527ab7f18 (patch) | |
tree | fa993cbde94674ac7ec6a092c57a5238946da4a6 /src/libstore/build/local-derivation-goal.hh | |
parent | 8abb20390ef2f8ae664c0ac34479b2a43aa1df26 (diff) |
Merge pull request #8965 from Artturin/bindfilesinchroot
Bindmount files instead of hardlinking or copying to chroot
(cherry picked from commit 622191c2b53882a1675fed5066ff8090b4f01827)
Change-Id: I278ec1baacdfa9044992b58fdec8f14d6d7d09ce
Diffstat (limited to 'src/libstore/build/local-derivation-goal.hh')
-rw-r--r-- | src/libstore/build/local-derivation-goal.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/build/local-derivation-goal.hh b/src/libstore/build/local-derivation-goal.hh index 0a05081c7..05c2c3a56 100644 --- a/src/libstore/build/local-derivation-goal.hh +++ b/src/libstore/build/local-derivation-goal.hh @@ -86,8 +86,8 @@ struct LocalDerivationGoal : public DerivationGoal : source(source), optional(optional) { } }; - typedef map<Path, ChrootPath> DirsInChroot; // maps target path to source path - DirsInChroot dirsInChroot; + typedef map<Path, ChrootPath> PathsInChroot; // maps target path to source path + PathsInChroot pathsInChroot; typedef map<std::string, std::string> Environment; Environment env; |