diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-05-30T15·40+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-05-30T15·40+0200 |
commit | acc889c82179e96537ebe1494ec13b9536d579ca (patch) | |
tree | eeff56d8de6984cdbfe8dd661de9fb6d14c1d8a8 /src/libstore/local-store.cc | |
parent | 53a16441878ebd4a5ac6ef8a95a649bfd521da3d (diff) |
Darwin sandbox: Use sandbox-defaults.sb
Issue #759. Also, remove nix.conf from the sandbox since I don't really see a legitimate reason for builders to access the Nix configuration.
Diffstat (limited to 'src/libstore/local-store.cc')
-rw-r--r-- | src/libstore/local-store.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc index 5b03e86f3eaa..a226e0110af1 100644 --- a/src/libstore/local-store.cc +++ b/src/libstore/local-store.cc @@ -320,7 +320,7 @@ void LocalStore::openDB(State & state, bool create) /* Initialise the database schema, if necessary. */ if (create) { const char * schema = -#include "schema.sql.hh" +#include "schema.sql.gen.hh" ; db.exec(schema); } |