diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-12-04T13·09+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-12-04T13·09+0000 |
commit | 1e16d2065503e213189d58db14de893f51545597 (patch) | |
tree | 746216248fb862e733c39b2213ef651f47c6d13e /src/libstore/globals.cc | |
parent | 9322b399f3a6fe3e0d60dfa991b06012c35b72f8 (diff) |
* Install the worker in bindir, not libexecdir.
* Allow the worker path to be overriden through the NIX_WORKER environment variable.
Diffstat (limited to 'src/libstore/globals.cc')
-rw-r--r-- | src/libstore/globals.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstore/globals.cc b/src/libstore/globals.cc index 466d0e0b26d7..e8c033db2ec1 100644 --- a/src/libstore/globals.cc +++ b/src/libstore/globals.cc @@ -15,6 +15,7 @@ string nixStateDir = "/UNINIT"; string nixDBPath = "/UNINIT"; string nixConfDir = "/UNINIT"; string nixLibexecDir = "/UNINIT"; +string nixBinDir = "/UNINIT"; bool keepFailed = false; bool keepGoing = false; |