diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-05-31 17:47:07 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-05-31 18:22:14 +0200 |
commit | 4078fa8f72fd109882f8b5e918cb6f7a9c1ed535 (patch) | |
tree | f58202e23fde12b78a08ff138d97a2fc8230c659 /nix | |
parent | 0a40626fd21423715508ca0bff3772c46fb3dc55 (diff) | |
download | guix-4078fa8f72fd109882f8b5e918cb6f7a9c1ed535.tar guix-4078fa8f72fd109882f8b5e918cb6f7a9c1ed535.tar.gz |
daemon: Fix typo.
Fixes a regression/typo introduced in
e08380fb6cefd3fd67c3c220a3ddaf385e6413cf.
* nix/libstore/build.cc (DerivationGoal::startBuilder): Canonicalize
"/tmp", not "/tmp/guix-build".
Diffstat (limited to 'nix')
-rw-r--r-- | nix/libstore/build.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/libstore/build.cc b/nix/libstore/build.cc index 2d3960bf89..ae78e65199 100644 --- a/nix/libstore/build.cc +++ b/nix/libstore/build.cc @@ -1718,7 +1718,7 @@ void DerivationGoal::startBuilder() /* In a sandbox, for determinism, always use the same temporary directory. */ - tmpDirInSandbox = useChroot ? canonPath("/tmp/guix-build-", true) + drvName + "-0" : tmpDir; + tmpDirInSandbox = useChroot ? canonPath("/tmp", true) + "/guix-build-" + drvName + "-0" : tmpDir; /* For convenience, set an environment pointing to the top build directory. */ |