* Use NIX_STORE environment variable to locate the store (in addition

to NIX_STORE_DIR) so that Nix invocations in builders in `make
  check' work correctly if the store doesn't exist.
This commit is contained in:
Eelco Dolstra 2005-01-28 13:19:16 +00:00
parent 9ab0bc9395
commit 22cfdfa246
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ static void initAndRun(int argc, char * * argv)
}
/* Setup Nix paths. */
nixStore = canonPath(getEnv("NIX_STORE_DIR", NIX_STORE_DIR));
nixStore = canonPath(getEnv("NIX_STORE_DIR", getEnv("NIX_STORE", NIX_STORE_DIR)));
nixDataDir = canonPath(getEnv("NIX_DATA_DIR", NIX_DATA_DIR));
nixLogDir = canonPath(getEnv("NIX_LOG_DIR", NIX_LOG_DIR));
nixStateDir = canonPath(getEnv("NIX_STATE_DIR", NIX_STATE_DIR));