diff options
author | Matthew Bauer <mjbauer95@gmail.com> | 2020-07-08 19:27:51 -0400 |
---|---|---|
committer | Matthew Bauer <mjbauer95@gmail.com> | 2020-07-08 19:27:51 -0400 |
commit | 06a4e15478920bcf8d39c36abc1a73a1e83bc9b7 (patch) | |
tree | 509c4a82d39c8a01e318ecca7e84a8452919210e /src/libstore | |
parent | 8e0d0689be797f9e42f9b43b06f50c1af7f20b4a (diff) |
Fix build.cc on linux
Diffstat (limited to 'src/libstore')
-rw-r--r-- | src/libstore/build.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/build.cc b/src/libstore/build.cc index bf7d4c2f9..9a53d9df7 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -2200,7 +2200,7 @@ void DerivationGoal::startBuilder() (typically the dependencies of /bin/sh). Throw them out. */ for (auto & i : drv->outputs) - dirsInChroot.erase(worker.store.printStorePath(i.second.path(drv->name))); + dirsInChroot.erase(worker.store.printStorePath(i.second.path(worker.store, drv->name))); #elif __APPLE__ /* We don't really have any parent prep work to do (yet?) |