diff options
Diffstat (limited to 'src/libstore/build.cc')
-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 466e3326d5f8..cbbd3aa39436 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -1657,7 +1657,7 @@ void DerivationGoal::startBuilder() #if CHROOT_ENABLED /* Create a temporary directory in which we set up the chroot environment using bind-mounts. */ - chrootRootDir = createTempDir(nixChrootsDir, "chroot-nix"); + chrootRootDir = createTempDir("", "nix-chroot"); /* Clean up the chroot directory automatically. */ autoDelChroot = boost::shared_ptr<AutoDelete>(new AutoDelete(chrootRootDir)); |