diff options
author | Daiderd Jordan <daiderd@gmail.com> | 2020-04-12 09:57:22 +0200 |
---|---|---|
committer | Daiderd Jordan <daiderd@gmail.com> | 2020-04-12 09:57:22 +0200 |
commit | 4d9db420ffc9bd48da107a61c093b0d65d9d8db1 (patch) | |
tree | 0610e08fd4d3e380afc1d0e6853b9f12cf000d8d /src | |
parent | ea2148f47cbea8d309ab2c1bed54899dcf36c14c (diff) |
never use /var/folders for TMPDIR on darwin
This doesn't just cause problems for nix-store --serve but also results
in certain build failures. Builds that use unix domain sockets in their
tests often fail because the /var/folders prefix already consumes more
than half of the maximum length of socket paths.
struct sockaddr_un {
sa_family_t sun_family; /* AF_UNIX */
char sun_path[108]; /* Pathname */
};
Diffstat (limited to 'src')
-rw-r--r-- | src/libmain/shared.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libmain/shared.cc b/src/libmain/shared.cc index d41e772e9..72ba717e5 100644 --- a/src/libmain/shared.cc +++ b/src/libmain/shared.cc @@ -155,7 +155,7 @@ void initNix() sshd). This breaks build users because they don't have access to the TMPDIR, in particular in ‘nix-store --serve’. */ #if __APPLE__ - if (getuid() == 0 && hasPrefix(getEnv("TMPDIR").value_or("/tmp"), "/var/folders/")) + if (hasPrefix(getEnv("TMPDIR").value_or("/tmp"), "/var/folders/")) unsetenv("TMPDIR"); #endif } |